nixpkgs/pkgs/development/ocaml-modules/menhir/default.nix
2016-07-29 11:30:42 +02:00

13 lines
465 B
Nix

{ stdenv, fetchurl, ocaml, findlib
, version ? if stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.02" then "20160526" else "20140422"
}@args:
let
sha256 =
if version == "20140422" then "1ki1f2id6a14h9xpv2k8yb6px7dyw8cvwh39csyzj4qpzx7wia0d"
else if version == "20160526" then "1i6yqxhs29n6qcvi6c5qbg5mh8752ywsyv1dr6x1qcv0ncqpxhns"
else throw ("menhir: unknown version " ++ version);
in
import ./generic.nix (args // { inherit version sha256; })