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

28 lines
737 B
Nix
Raw Normal View History

{ lib, buildDunePackage, fetchurl, ocaml
, fmt, bigstringaf, angstrom, alcotest }:
2019-10-20 20:31:33 +00:00
buildDunePackage rec {
pname = "encore";
2021-03-17 22:46:45 +00:00
version = "0.8";
minimumOCamlVersion = "4.07";
2019-10-20 20:31:33 +00:00
src = fetchurl {
url = "https://github.com/mirage/encore/releases/download/v${version}/encore-v${version}.tbz";
2021-03-17 22:46:45 +00:00
sha256 = "a406bc9863b04bb424692045939d6c170a2bb65a98521ae5608d25b0559344f6";
2019-10-20 20:31:33 +00:00
};
useDune2 = true;
propagatedBuildInputs = [ angstrom fmt bigstringaf ];
checkInputs = [ alcotest ];
doCheck = true;
2019-10-20 20:31:33 +00: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 ];
};
}