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