diff options
author | Brett Gilio <brettg@gnu.org> | 2020-08-30 18:11:44 -0500 |
---|---|---|
committer | Brett Gilio <brettg@gnu.org> | 2020-08-30 18:11:44 -0500 |
commit | c9f4cb161d794b517fa3164709c08ff42f366b8a (patch) | |
tree | 5a6ebd057d59abcb2605e9f7ff29723bfb6ac3c7 | |
parent | 63a61458287d6cdd44ccc0f457bff194e83ca971 (diff) | |
download | guix-c9f4cb161d794b517fa3164709c08ff42f366b8a.tar.gz |
gnu: ocamlbuild: Revise license.
* gnu/packages/ocaml.scm (ocamlbuild)[license]: License is actually LGPL2.0.
-rw-r--r-- | gnu/packages/ocaml.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 6204987c95..22f40c8b89 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -239,13 +239,13 @@ functional, imperative and object-oriented styles of programming.") #:phases (modify-phases %standard-phases (delete 'configure)) - ; some failures because of changes in OCaml's error message formating + ;; some failures because of changes in OCaml's error message formating #:tests? #f)) (home-page "https://github.com/ocaml/ocamlbuild") (synopsis "OCaml build tool") (description "OCamlbuild is a generic build tool, that has built-in rules for building OCaml library and programs.") - (license license:lgpl2.1+))) + (license license:lgpl2.0))) (define-public ocaml-extlib (package |