nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 21 lines 398 B view raw
1{ buildDunePackage, awa 2, cstruct, mtime, lwt, cstruct-unix, mirage-crypto-rng 3}: 4 5buildDunePackage { 6 pname = "awa-lwt"; 7 8 inherit (awa) version src; 9 10 duneVersion = "3"; 11 12 propagatedBuildInputs = [ 13 awa cstruct mtime lwt mirage-crypto-rng 14 ]; 15 16 doCheck = true; 17 nativeCheckInputs = [ awa ]; 18 checkInputs = [ cstruct-unix ]; 19 20 meta = awa.meta // { mainProgram = "awa_lwt_server"; }; 21}