about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/encore/default.nix
blob: fc54eb1a4781080802c3f983cef431c9e9ef4bdf (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
{ lib
, buildDunePackage
, fetchurl
, fmt
, bigstringaf
, angstrom
, alcotest
}:

buildDunePackage rec {
  pname = "encore";
  version = "0.8";

  minimalOCamlVersion = "4.08";

  src = fetchurl {
    url = "https://github.com/mirage/encore/releases/download/v${version}/encore-v${version}.tbz";
    sha256 = "a406bc9863b04bb424692045939d6c170a2bb65a98521ae5608d25b0559344f6";
  };

  duneVersion = "3";

  propagatedBuildInputs = [ angstrom fmt bigstringaf ];
  checkInputs = [ alcotest ];
  doCheck = true;

  meta = {
    homepage = "https://github.com/mirage/encore";
    description = "Library to generate encoder/decoder which ensure isomorphism";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.vbgl ];
  };
}