about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorMihai Fufezan <fufexan@pm.me>2021-08-27 10:33:50 +0300
committerVincent Laporte <vbgl@users.noreply.github.com>2021-08-27 12:00:16 +0200
commit843eebbd8e0a951e5c2c3f1cd2e17a39f6c08701 (patch)
tree9fcd7192d12445cebdb31374fde9ac2162130011 /pkgs/development/ocaml-modules
parentdd37bf5d75fd1fbfc7e71d46c9db926909198eef (diff)
downloadnixlib-843eebbd8e0a951e5c2c3f1cd2e17a39f6c08701.tar
nixlib-843eebbd8e0a951e5c2c3f1cd2e17a39f6c08701.tar.gz
nixlib-843eebbd8e0a951e5c2c3f1cd2e17a39f6c08701.tar.bz2
nixlib-843eebbd8e0a951e5c2c3f1cd2e17a39f6c08701.tar.lz
nixlib-843eebbd8e0a951e5c2c3f1cd2e17a39f6c08701.tar.xz
nixlib-843eebbd8e0a951e5c2c3f1cd2e17a39f6c08701.tar.zst
nixlib-843eebbd8e0a951e5c2c3f1cd2e17a39f6c08701.zip
ocamlPackages.noise: init at 0.2.0
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/noise/default.nix60
1 files changed, 60 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/noise/default.nix b/pkgs/development/ocaml-modules/noise/default.nix
new file mode 100644
index 000000000000..59ca274c88dc
--- /dev/null
+++ b/pkgs/development/ocaml-modules/noise/default.nix
@@ -0,0 +1,60 @@
+{ lib
+, buildDunePackage
+, fetchurl
+
+, callipyge
+, chacha
+, digestif
+, hex
+, lwt
+, lwt_ppx
+, nocrypto
+, ounit
+, ppxlib
+, ppx_let
+, ppx_deriving
+, ppx_deriving_yojson
+}:
+
+buildDunePackage rec {
+  pname = "noise";
+  version = "0.2.0";
+
+  src = fetchurl {
+    url = "https://github.com/emillon/ocaml-noise/releases/download/v${version}/${pname}-v${version}.tbz";
+    sha256 = "sha256-fe3pT7fsuF2hCvXpInsRg6OvARs/eAh1Un454s1osDs=";
+  };
+
+  useDune2 = true;
+
+  minimumOCamlVersion = "4.04";
+
+  nativeBuildInputs = [
+    ppxlib
+    ppx_deriving
+    ppx_let
+  ];
+
+  propagatedBuildInputs = [
+    callipyge
+    chacha
+    digestif
+    hex
+    nocrypto
+  ];
+
+  doCheck = true;
+  checkInputs = [
+    lwt
+    lwt_ppx
+    ounit
+    ppx_deriving_yojson
+  ];
+
+  meta = {
+    homepage = "https://github.com/emillon/ocaml-noise";
+    description = "OCaml implementation of the Noise Protocol Framework";
+    license = lib.licenses.bsd2;
+    maintainers = with lib.maintainers; [ fufexan ];
+  };
+}