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

11 lines
187 B
Nix
Raw Normal View History

{ buildDunePackage, cstruct }:
2017-11-27 19:08:40 +00:00
buildDunePackage {
pname = "cstruct-unix";
inherit (cstruct) version src meta;
2017-11-27 19:08:40 +00:00
minimumOCamlVersion = "4.02";
2017-11-27 19:08:40 +00:00
propagatedBuildInputs = [ cstruct ];
}