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

15 lines
271 B
Nix
Raw Normal View History

{ lib, buildDunePackage, cstruct }:
if !lib.versionAtLeast (cstruct.version or "1") "3"
then cstruct
else
2017-11-27 22:08:40 +03:00
buildDunePackage {
pname = "cstruct-unix";
2020-11-19 09:36:41 +03:00
inherit (cstruct) version src useDune2 meta;
2017-11-27 22:08:40 +03:00
minimumOCamlVersion = "4.06";
2017-11-27 22:08:40 +03:00
propagatedBuildInputs = [ cstruct ];
}