Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 posix-base, 5 posix-types, 6 unix-errno, 7}: 8 9buildDunePackage { 10 pname = "posix-time2"; 11 12 inherit (posix-base) version src; 13 14 propagatedBuildInputs = [ 15 posix-base 16 posix-types 17 unix-errno 18 ]; 19 20 doCheck = true; 21 22 meta = posix-base.meta // { 23 description = "Posix-time2 provides the types and bindings for posix time APIs"; 24 maintainers = with lib.maintainers; [ dandellion ]; 25 }; 26}