evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / pbkdf / default.nix
blob27b269b369e8ea3b5bdc5aae80e1fad810b0b6da
1 { lib
2 , buildDunePackage
3 , fetchzip
4 , digestif
5 , mirage-crypto
6 , alcotest
7 , ohex
8 }:
10 buildDunePackage rec {
11   pname = "pbkdf";
12   version = "2.0.0";
14   src = fetchzip {
15     url = "https://github.com/abeaumont/ocaml-pbkdf/archive/${version}.tar.gz";
16     hash = "sha256-D2dXpf1D/wsJrcajU3If37tuLYjahoA/+QoXZKr1vQs=";
17   };
19   minimalOCamlVersion = "4.08";
20   propagatedBuildInputs = [ digestif mirage-crypto ];
21   checkInputs = [ alcotest ohex ];
22   doCheck = true;
24   meta = {
25     description = "Password based key derivation functions (PBKDF) from PKCS#5";
26     maintainers = [ lib.maintainers.sternenseemann ];
27     license = lib.licenses.bsd2;
28     homepage = "https://github.com/abeaumont/ocaml-pbkdf";
29   };