summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorMarco Maggesi <maggesi@math.unifi.it>2014-01-15 16:47:34 +0100
committerRok Garbas <rok@garbas.si>2014-01-18 20:56:44 +0000
commitc54a9276ba82a8f34102679fdf1869d63dede2ad (patch)
tree1570cbc7d82cd59397bc3fe15248e5bc1d5d6cff /pkgs/development/ocaml-modules
parentcd2fd2a4013ac96798df2458ba9f980fb4462b0c (diff)
downloadnixpkgs-c54a9276ba82a8f34102679fdf1869d63dede2ad.tar
nixpkgs-c54a9276ba82a8f34102679fdf1869d63dede2ad.tar.gz
nixpkgs-c54a9276ba82a8f34102679fdf1869d63dede2ad.tar.bz2
nixpkgs-c54a9276ba82a8f34102679fdf1869d63dede2ad.tar.lz
nixpkgs-c54a9276ba82a8f34102679fdf1869d63dede2ad.tar.xz
nixpkgs-c54a9276ba82a8f34102679fdf1869d63dede2ad.tar.zst
nixpkgs-c54a9276ba82a8f34102679fdf1869d63dede2ad.zip
Update menhir to version 20130115
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/menhir/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/menhir/default.nix b/pkgs/development/ocaml-modules/menhir/default.nix
index d02516e410a..249ddc1cf56 100644
--- a/pkgs/development/ocaml-modules/menhir/default.nix
+++ b/pkgs/development/ocaml-modules/menhir/default.nix
@@ -2,14 +2,13 @@
 
 let
   ocaml_version = (builtins.parseDrvName ocaml.name).version;
-  version = "20120123";
 in
 
 stdenv.mkDerivation {
-  name = "menhir-${version}";
+  name = "menhir-20130116";
 
   src = fetchurl {
-    url = "http://pauillac.inria.fr/~fpottier/menhir/menhir-${version}.tar.gz";
+    url = http://pauillac.inria.fr/~fpottier/menhir/menhir-20130116.tar.gz;
     sha256 = "65cd9e4f813c62697c60c344963ca11bd461169f574ba3a866c2691541cb4682";
   };
 
@@ -42,7 +41,7 @@ stdenv.mkDerivation {
       to OCaml code.  Menhir was designed and implemented by François Pottier
       and Yann Régis-Gianas.
     '';
-    license = "QPL,LGPL+linking exceptions";
+    licenses = [ "QPL" /* generator */ "LGPLv2" /* library */ ];
     platforms = ocaml.meta.platforms;
     maintainers = [
       stdenv.lib.maintainers.z77z