ocamlPackages.cryptokit: 1.16.1 → 1.17

This commit is contained in:
Vincent Laporte 2022-05-03 19:10:37 +02:00 committed by Vincent Laporte
parent cbd4728f8a
commit fa04419da0

View file

@ -1,16 +1,16 @@
{ lib, buildDunePackage, fetchFromGitHub, zlib, dune-configurator, zarith, ncurses }: { lib, buildDunePackage, fetchFromGitHub, zlib, dune-configurator, zarith }:
buildDunePackage rec { buildDunePackage rec {
pname = "cryptokit"; pname = "cryptokit";
version = "1.16.1"; version = "1.17";
useDune2 = true; minimalOCamlVersion = "4.08";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "xavierleroy"; owner = "xavierleroy";
repo = "cryptokit"; repo = "cryptokit";
rev = "release${lib.replaceStrings ["."] [""] version}"; rev = "release${lib.replaceStrings ["."] [""] version}";
sha256 = "sha256-eDIzi16Al/mXCNos/lVqjZWCtdP9SllXnRfm4GBWMfA="; sha256 = "sha256:1xi7kcigxkfridjas2zwldsfc21wi31cgln071sbmv4agh3dqbyw";
}; };
# dont do autotools configuration, but do trigger findlib's preConfigure hook # dont do autotools configuration, but do trigger findlib's preConfigure hook
@ -19,7 +19,7 @@ buildDunePackage rec {
runHook postConfigure runHook postConfigure
''; '';
buildInputs = [ dune-configurator ncurses ]; buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ zarith zlib ]; propagatedBuildInputs = [ zarith zlib ];
doCheck = true; doCheck = true;