1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

ocamlPackages.cryptokit: 1.13 → 1.14

This commit is contained in:
Vincent Laporte 2019-12-02 10:32:45 +00:00 committed by Vincent Laporte
parent 70fb3ae37f
commit 828f530d88

View file

@ -5,9 +5,9 @@ assert stdenv.lib.versionAtLeast ocaml.version "3.12";
let param =
if stdenv.lib.versionAtLeast ocaml.version "4.02"
then {
version = "1.13";
url = https://github.com/xavierleroy/cryptokit/archive/release113.tar.gz;
sha256 = "1f4jjnp2a911nqw0hbijyv9vygkk6kw5zx75qs49hfm3by6ij8rq";
version = "1.14";
url = https://github.com/xavierleroy/cryptokit/archive/release114.tar.gz;
sha256 = "0wkh72idkb7dahiwyl94hhbq27cc7x9fnmxkpnbqli6wi8wd7d05";
inherit zarith;
} else {
version = "1.10";
@ -25,8 +25,8 @@ stdenv.mkDerivation {
inherit (param) url sha256;
};
buildInputs = [ zlib ocaml findlib ocamlbuild ncurses ];
propagatedBuildInputs = [ param.zarith ];
buildInputs = [ ocaml findlib ocamlbuild ncurses ];
propagatedBuildInputs = [ param.zarith zlib ];
buildFlags = "setup.data build";