ocamlPackages.argon2: init at 1.0.2
This commit is contained in:
parent
540bd6e1ef
commit
e77213e7da
40
pkgs/development/ocaml-modules/argon2/default.nix
Normal file
40
pkgs/development/ocaml-modules/argon2/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
lib,
|
||||
fetchurl,
|
||||
ctypes,
|
||||
ctypes-foreign,
|
||||
dune-configurator,
|
||||
result,
|
||||
libargon2,
|
||||
buildDunePackage,
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "argon2";
|
||||
version = "1.0.2";
|
||||
|
||||
minimalOCamlVersion = "4.02.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Khady/ocaml-argon2/releases/download/${version}/argon2-${version}.tbz";
|
||||
hash = "sha256-NDsOV4kPT2SnSfNHDBAK+VKZgHDIKxW+dNJ/C5bQ8gU=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
dune-configurator
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ctypes
|
||||
ctypes-foreign
|
||||
libargon2
|
||||
result
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/Khady/ocaml-argon2";
|
||||
description = "Ocaml bindings to Argon2";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ naora ];
|
||||
};
|
||||
}
|
||||
@ -46,6 +46,8 @@ let
|
||||
|
||||
apron = callPackage ../development/ocaml-modules/apron { };
|
||||
|
||||
argon2 = callPackage ../development/ocaml-modules/argon2 { };
|
||||
|
||||
arg-complete = callPackage ../development/ocaml-modules/arg-complete { };
|
||||
|
||||
arp = callPackage ../development/ocaml-modules/arp { };
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user