summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-03-04 07:24:04 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-03-04 09:29:10 +0100
commitb219052bf1e8c78b449f7ec0edc0303f55708293 (patch)
tree5e9c5b61c88d0c61f7e7d3d02a524696b91479c9 /pkgs
parent0f5bbe588fab7e8439f2259c3102f2296d6483f9 (diff)
downloadnixpkgs-b219052bf1e8c78b449f7ec0edc0303f55708293.tar
nixpkgs-b219052bf1e8c78b449f7ec0edc0303f55708293.tar.gz
nixpkgs-b219052bf1e8c78b449f7ec0edc0303f55708293.tar.bz2
nixpkgs-b219052bf1e8c78b449f7ec0edc0303f55708293.tar.lz
nixpkgs-b219052bf1e8c78b449f7ec0edc0303f55708293.tar.xz
nixpkgs-b219052bf1e8c78b449f7ec0edc0303f55708293.tar.zst
nixpkgs-b219052bf1e8c78b449f7ec0edc0303f55708293.zip
menhir: 20151112 -> 20160303
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/menhir/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/menhir/default.nix b/pkgs/development/ocaml-modules/menhir/default.nix
index 3841027b896..16bdc17f578 100644
--- a/pkgs/development/ocaml-modules/menhir/default.nix
+++ b/pkgs/development/ocaml-modules/menhir/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, ocaml, findlib
-, version ? if stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.02" then "20151112" else "20140422"
+, version ? if stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.02" then "20160303" else "20140422"
 }@args:
 
 let
   sha256 =
   if version == "20140422" then "1ki1f2id6a14h9xpv2k8yb6px7dyw8cvwh39csyzj4qpzx7wia0d"
-  else if version == "20151112" then "0fhfs96gxnj920h5ydsg7c1qypsbrlzqfn2cqzrg9rfj1qq6wq86"
+  else if version == "20160303" then "1q57x81483xkvbx6bqjx31d4c4lpy9fs3y7h3l8azrs9yi7r6c63"
   else throw ("menhir: unknown version " ++ version);
 in