ocamlPackage.cryptokit: 1.10 -> 1.11
This commit is contained in:
parent
423a195637
commit
99edbe65c1
|
@ -1,17 +1,32 @@
|
||||||
{ stdenv, fetchurl, zlib, ocaml, findlib, ocamlbuild, ncurses }:
|
{ stdenv, fetchurl, zlib, ocaml, findlib, ocamlbuild, zarith, ncurses }:
|
||||||
|
|
||||||
assert stdenv.lib.versionAtLeast ocaml.version "3.12";
|
assert stdenv.lib.versionAtLeast ocaml.version "3.12";
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let param =
|
||||||
name = "cryptokit-${version}";
|
if stdenv.lib.versionAtLeast ocaml.version "4.02"
|
||||||
|
then {
|
||||||
|
version = "1.11";
|
||||||
|
url = http://forge.ocamlcore.org/frs/download.php/1618/cryptokit-1.11.tar.gz;
|
||||||
|
sha256 = "1c1vn15lf2b5a8nfa2v2brxm7bwby540nf6q0vkndgkq5qcw96j8";
|
||||||
|
inherit zarith;
|
||||||
|
} else {
|
||||||
version = "1.10";
|
version = "1.10";
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = http://forge.ocamlcore.org/frs/download.php/1493/cryptokit-1.10.tar.gz;
|
url = http://forge.ocamlcore.org/frs/download.php/1493/cryptokit-1.10.tar.gz;
|
||||||
sha256 = "1k2f2ixm7jcsgrzn9lz1hm9qqgq71lk9lxy3v3cwsd8xdrj3jrnv";
|
sha256 = "1k2f2ixm7jcsgrzn9lz1hm9qqgq71lk9lxy3v3cwsd8xdrj3jrnv";
|
||||||
|
zarith = null;
|
||||||
|
};
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "cryptokit-${version}";
|
||||||
|
inherit (param) version;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
inherit (param) url sha256;
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ zlib ocaml findlib ocamlbuild ncurses ];
|
buildInputs = [ zlib ocaml findlib ocamlbuild ncurses ];
|
||||||
|
propagatedBuildInputs = [ param.zarith ];
|
||||||
|
|
||||||
buildFlags = "setup.data build";
|
buildFlags = "setup.data build";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue