ocamlPackages.ocsigen_deriving: 0.7.1 -> 0.8.1
This commit is contained in:
parent
50b0afa269
commit
8aa1e53a98
1 changed files with 20 additions and 5 deletions
|
@ -1,15 +1,30 @@
|
|||
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, oasis, ocaml_optcomp, camlp4 }:
|
||||
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, oasis, ocaml_optcomp, camlp4
|
||||
, num
|
||||
}:
|
||||
|
||||
let version = "0.7.1"; in
|
||||
let param =
|
||||
if stdenv.lib.versionAtLeast ocaml.version "4.03"
|
||||
then {
|
||||
version = "0.8.1";
|
||||
sha256 = "03vzrybdpjydbpil97zmir71kpsn2yxkjnzysma7fvybk8ll4zh9";
|
||||
buildInputs = [ num ];
|
||||
} else {
|
||||
version = "0.7.1";
|
||||
sha256 = "0gg3nr3iic4rwqrcc0qvfm9x0x57zclvdsnpy0z8rv2fl5isbzms";
|
||||
};
|
||||
in
|
||||
|
||||
let inherit (param) version; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ocsigen-deriving-${version}";
|
||||
src = fetchzip {
|
||||
url = "https://github.com/ocsigen/deriving/archive/${version}.tar.gz";
|
||||
sha256 = "0gg3nr3iic4rwqrcc0qvfm9x0x57zclvdsnpy0z8rv2fl5isbzms";
|
||||
};
|
||||
inherit (param) sha256;
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml findlib ocamlbuild oasis ocaml_optcomp camlp4 ];
|
||||
buildInputs = [ ocaml findlib ocamlbuild oasis ocaml_optcomp camlp4 ]
|
||||
++ (param.buildInputs or []);
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue