diff options
author | Cyril Roelandt <tipecaml@gmail.com> | 2013-01-23 21:16:22 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-24 00:03:43 +0100 |
commit | d192efae07b9eadc31c80fc0b5b4e6e222e30bec (patch) | |
tree | 9185349d336658fb1994a8fe948a85e9e9558500 /guix | |
parent | 21c203a53a617962586ef645b22f80814b05fd65 (diff) |
gnu: Add OCaml. licenses: Add QPL.
* gnu/packages/ocaml.scm: New file.
* Makefile.am (MODULES): Add it.
* guix/licenses.scm: New variable.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/licenses.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/guix/licenses.scm b/guix/licenses.scm index 93af865055..c636cc5edf 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -36,6 +36,7 @@ mpl2.0 openldap2.8 openssl psfl public-domain + qpl vim x11 zlib)) @@ -213,6 +214,11 @@ which may be a file:// URI pointing the package's tree." "http://directory.fsf.org/wiki/License:PublicDomain" "https://www.gnu.org/licenses/license-list#PublicDomain")) +(define qpl + (license "QPL" + "http://directory.fsf.org/wiki/License:QPLv1.0" + "http://www.gnu.org/licenses/license-list.html#QPL")) + (define vim (license "Vim" "http://directory.fsf.org/wiki/License:Vim7.2" |