summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/sha
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/sha')
-rw-r--r--pkgs/development/ocaml-modules/sha/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/sha/default.nix b/pkgs/development/ocaml-modules/sha/default.nix
new file mode 100644
index 00000000000..80a5205a230
--- /dev/null
+++ b/pkgs/development/ocaml-modules/sha/default.nix
@@ -0,0 +1,29 @@
+{ lib, fetchurl, buildDunePackage, stdlib-shims, ounit }:
+
+buildDunePackage rec {
+  pname = "sha";
+  version = "1.14";
+
+  src = fetchurl {
+    url = "https://github.com/djs55/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
+    sha256 = "114vydrfdp7fayigvgk3ckiby0kh4n49c1j53v8k40gk6nzm3l19";
+  };
+
+  useDune2 = true;
+
+  propagatedBuildInputs = [
+    stdlib-shims
+  ];
+
+  doCheck = true;
+  checkInputs = [
+    ounit
+  ];
+
+  meta = with lib; {
+    description = "Binding for SHA interface code in OCaml";
+    homepage = "https://github.com/djs55/ocaml-sha/";
+    license = licenses.isc;
+    maintainers = with maintainers; [ arthurteisseire ];
+  };
+}