evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / asn1-combinators / default.nix
blob822c4056e2597b2077ebe701b39975b61cbe7bac
1 { lib, buildDunePackage, fetchurl
2 , ptime
3 , alcotest
4 }:
6 buildDunePackage rec {
7   minimalOCamlVersion = "4.08";
9   pname = "asn1-combinators";
10   version = "0.3.1";
12   src = fetchurl {
13     url = "https://github.com/mirleft/ocaml-asn1-combinators/releases/download/v${version}/asn1-combinators-${version}.tbz";
14     hash = "sha256-+imExupuHhxP4gM/AWWvYRljwkAM4roFEAS3ffxVfE4=";
15   };
17   propagatedBuildInputs = [ 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   };