mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
11 lines
195 B
Nix
11 lines
195 B
Nix
{ buildDunePackage, cstruct, lwt }:
|
|
|
|
buildDunePackage {
|
|
pname = "cstruct-lwt";
|
|
inherit (cstruct) version src meta;
|
|
|
|
minimumOCamlVersion = "4.02";
|
|
|
|
propagatedBuildInputs = [ cstruct lwt ];
|
|
}
|