Skip to content

Commit

Permalink
ocamlPackages.asn1-combinators: 0.3.1 -> 0.3.2 (#373485)
Browse files Browse the repository at this point in the history
  • Loading branch information
momeemt authored Jan 16, 2025
1 parent d6a640c commit b6a35ab
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions pkgs/development/ocaml-modules/asn1-combinators/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,33 @@
fetchurl,
ptime,
alcotest,
ohex,
}:

buildDunePackage rec {
minimalOCamlVersion = "4.08";
minimalOCamlVersion = "4.13.0";

pname = "asn1-combinators";
version = "0.3.1";
version = "0.3.2";

src = fetchurl {
url = "https://github.com/mirleft/ocaml-asn1-combinators/releases/download/v${version}/asn1-combinators-${version}.tbz";
hash = "sha256-+imExupuHhxP4gM/AWWvYRljwkAM4roFEAS3ffxVfE4=";
hash = "sha256-KyaYX24nIgc9zZ+ENVvWdX4SZDtaSOMLPAf/fPsNin8=";
};

propagatedBuildInputs = [ ptime ];

doCheck = true;
checkInputs = [ alcotest ];
checkInputs = [
alcotest
ohex
];

meta = with lib; {
meta = {
homepage = "https://github.com/mirleft/ocaml-asn1-combinators";
changelog = "https://github.com/mirleft/ocaml-asn1-combinators/blob/v${version}/CHANGES.md";
description = "Combinators for expressing ASN.1 grammars in OCaml";
license = licenses.isc;
maintainers = with maintainers; [ vbgl ];
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ vbgl ];
};
}

0 comments on commit b6a35ab

Please sign in to comment.