nixpkgs/pkgs/development/ocaml-modules/encore/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
743 B
Nix
Raw Normal View History

{ lib
, buildDunePackage
, fetchurl
, ocaml
, fmt
, bigstringaf
, angstrom
, alcotest
}:
2019-10-20 22:31:33 +02:00
buildDunePackage rec {
pname = "encore";
2021-03-17 23:46:45 +01:00
version = "0.8";
minimumOCamlVersion = "4.07";
2019-10-20 22:31:33 +02:00
src = fetchurl {
url = "https://github.com/mirage/encore/releases/download/v${version}/encore-v${version}.tbz";
2021-03-17 23:46:45 +01:00
sha256 = "a406bc9863b04bb424692045939d6c170a2bb65a98521ae5608d25b0559344f6";
2019-10-20 22:31:33 +02:00
};
useDune2 = true;
propagatedBuildInputs = [ angstrom fmt bigstringaf ];
checkInputs = [ alcotest ];
doCheck = true;
2019-10-20 22:31:33 +02:00
meta = {
homepage = "https://github.com/mirage/encore";
description = "Library to generate encoder/decoder which ensure isomorphism";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}