Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildDunePackage, posix-base }: 2 3buildDunePackage { 4 pname = "posix-socket"; 5 6 inherit (posix-base) version src; 7 8 minimalOCamlVersion = "4.12"; 9 10 propagatedBuildInputs = [ posix-base ]; 11 12 doCheck = true; 13 14 meta = posix-base.meta // { 15 description = "Bindings for posix sockets"; 16 }; 17 18}