ocamlPackages.pbkdf: use Dune 3

This commit is contained in:
Vincent Laporte 2023-01-30 07:26:44 +01:00
parent feac9563b4
commit 8303bef387
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -10,12 +10,14 @@ buildDunePackage rec {
pname = "pbkdf";
version = "1.2.0";
duneVersion = "3";
src = fetchzip {
url = "https://github.com/abeaumont/ocaml-pbkdf/archive/${version}.tar.gz";
sha256 = "sha256-dGi4Vw+7VBpK/NpJ6zdpogm+E6G/oJovXCksJBSmqjI=";
};
minimalOCamlVersion = "4.07";
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [ cstruct mirage-crypto ];
nativeCheckInputs = [ alcotest ];
doCheck = true;