Files
nixpkgs/pkgs/development/ocaml-modules/cstruct/unix.nix

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

20 lines
307 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
cstruct,
}:
if lib.versionOlder (cstruct.version or "1") "3" then
cstruct
else
buildDunePackage {
pname = "cstruct-unix";
inherit (cstruct) version src meta;
minimalOCamlVersion = "4.08";
duneVersion = "3";
propagatedBuildInputs = [ cstruct ];
}