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.

16 lines
298 B
Nix
Raw Normal View History

{ lib, buildDunePackage, cstruct }:
if lib.versionOlder (cstruct.version or "1") "3"
then cstruct
else
2017-11-27 22:08:40 +03:00
buildDunePackage {
pname = "cstruct-unix";
inherit (cstruct) version src meta;
2017-11-27 22:08:40 +03:00
minimalOCamlVersion = "4.08";
2023-03-28 09:58:02 +03:00
duneVersion = "3";
2017-11-27 22:08:40 +03:00
propagatedBuildInputs = [ cstruct ];
}