nixpkgs/pkgs/development/ocaml-modules/cstruct/unix.nix
2023-03-28 11:26:16 +02:00

16 lines
298 B
Nix

{ 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 ];
}