ocamlPackages.cryptokit: 1.16.1 → 1.17

authored by Vincent Laporte and committed by Vincent Laporte fa04419d cbd4728f

+5 -5
+5 -5
pkgs/development/ocaml-modules/cryptokit/default.nix
··· 1 - { lib, buildDunePackage, fetchFromGitHub, zlib, dune-configurator, zarith, ncurses }: 1 + { lib, buildDunePackage, fetchFromGitHub, zlib, dune-configurator, zarith }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "cryptokit"; 5 - version = "1.16.1"; 5 + version = "1.17"; 6 6 7 - useDune2 = true; 7 + minimalOCamlVersion = "4.08"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "xavierleroy"; 11 11 repo = "cryptokit"; 12 12 rev = "release${lib.replaceStrings ["."] [""] version}"; 13 - sha256 = "sha256-eDIzi16Al/mXCNos/lVqjZWCtdP9SllXnRfm4GBWMfA="; 13 + sha256 = "sha256:1xi7kcigxkfridjas2zwldsfc21wi31cgln071sbmv4agh3dqbyw"; 14 14 }; 15 15 16 16 # dont do autotools configuration, but do trigger findlib's preConfigure hook ··· 19 19 runHook postConfigure 20 20 ''; 21 21 22 - buildInputs = [ dune-configurator ncurses ]; 22 + buildInputs = [ dune-configurator ]; 23 23 propagatedBuildInputs = [ zarith zlib ]; 24 24 25 25 doCheck = true;