Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 ipaddr, 4 cstruct, 5}: 6 7buildDunePackage { 8 pname = "ipaddr-cstruct"; 9 10 inherit (ipaddr) version src; 11 12 duneVersion = "3"; 13 14 propagatedBuildInputs = [ 15 ipaddr 16 cstruct 17 ]; 18 19 doCheck = true; 20 21 meta = ipaddr.meta // { 22 description = "Library for manipulation of IP address representations using Cstructs"; 23 }; 24}