forked from mirrors/nixpkgs
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
28 lines
810 B
Nix
28 lines
810 B
Nix
{ lib, buildDunePackage, fetchurl
|
|
, cstruct, zarith, bigarray-compat, stdlib-shims, ptime, alcotest
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
pname = "asn1-combinators";
|
|
version = "0.2.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirleft/ocaml-asn1-combinators/releases/download/v${version}/asn1-combinators-v${version}.tbz";
|
|
sha256 = "sha256-ASreDYhp72IQY3UsHPjqAm9rxwL+0Q35r1ZojikbGpE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ cstruct zarith bigarray-compat stdlib-shims ptime ];
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [ alcotest ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/mirleft/ocaml-asn1-combinators";
|
|
description = "Combinators for expressing ASN.1 grammars in OCaml";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ vbgl ];
|
|
};
|
|
}
|