ocamlPackages.sha: init at 1.13
This commit is contained in:
parent
e02ced5c20
commit
7cc2f6cc54
@ -768,6 +768,12 @@
|
||||
githubId = 3965744;
|
||||
name = "Arthur Lee";
|
||||
};
|
||||
arthurteisseire = {
|
||||
email = "arthurteisseire33@gmail.com";
|
||||
github = "arthurteisseire";
|
||||
githubId = 37193992;
|
||||
name = "Arthur Teisseire";
|
||||
};
|
||||
arturcygan = {
|
||||
email = "arczicygan@gmail.com";
|
||||
github = "arcz";
|
||||
|
28
pkgs/development/ocaml-modules/sha/default.nix
Normal file
28
pkgs/development/ocaml-modules/sha/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, fetchurl
|
||||
, buildDunePackage
|
||||
, ounit
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "sha";
|
||||
version = "1.13";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/djs55/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
|
||||
sha256 = "00z2s4fsv9i1h09rj5dy3nd9hhcn79b75sn2ljj5wihlf4y4g304";
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
checkInputs = [ ounit ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Binding for SHA interface code in OCaml";
|
||||
maintainers = [ maintainers.arthurteisseire ];
|
||||
homepage = "https://github.com/djs55/ocaml-${pname}";
|
||||
license = licenses.isc;
|
||||
};
|
||||
|
||||
}
|
@ -1075,6 +1075,8 @@ let
|
||||
|
||||
semaphore-compat = callPackage ../development/ocaml-modules/semaphore-compat { };
|
||||
|
||||
sha = callPackage ../development/ocaml-modules/sha { };
|
||||
|
||||
sodium = callPackage ../development/ocaml-modules/sodium { };
|
||||
|
||||
spelll = callPackage ../development/ocaml-modules/spelll { };
|
||||
|
Loading…
Reference in New Issue
Block a user