nixpkgs/pkgs/development/ocaml-modules/cstruct/sexp.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
371 B
Nix
Raw Permalink Normal View History

{ lib, buildDunePackage, ocaml, alcotest, cstruct, sexplib }:
if lib.versionOlder (cstruct.version or "1") "3"
then cstruct
else
buildDunePackage rec {
pname = "cstruct-sexp";
inherit (cstruct) version src meta;
minimalOCamlVersion = "4.08";
2023-03-28 06:58:02 +00:00
duneVersion = "3";
2020-10-25 18:54:25 +00:00
doCheck = true;
checkInputs = [ alcotest ];
propagatedBuildInputs = [ cstruct sexplib ];
}