about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/noise/default.nix
blob: 59ca274c88dccadababc0e2c19c8fd4dd2d65196 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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 ];
  };
}