biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / asn1-combinators / default.nix
bloba8e8a9cc847f8c8c418075b5f74b4c86a034bd32
1 { lib, buildDunePackage, fetchurl
2 , cstruct, zarith, bigarray-compat, stdlib-shims, ptime, alcotest
3 }:
5 buildDunePackage rec {
6   minimalOCamlVersion = "4.08";
7   duneVersion = "3";
9   pname = "asn1-combinators";
10   version = "0.2.6";
12   src = fetchurl {
13     url = "https://github.com/mirleft/ocaml-asn1-combinators/releases/download/v${version}/asn1-combinators-v${version}.tbz";
14     sha256 = "sha256-ASreDYhp72IQY3UsHPjqAm9rxwL+0Q35r1ZojikbGpE=";
15   };
17   propagatedBuildInputs = [ cstruct zarith bigarray-compat stdlib-shims ptime ];
19   doCheck = true;
20   checkInputs = [ alcotest ];
22   meta = with lib; {
23     homepage = "https://github.com/mirleft/ocaml-asn1-combinators";
24     description = "Combinators for expressing ASN.1 grammars in OCaml";
25     license = licenses.isc;
26     maintainers = with maintainers; [ vbgl ];
27   };