Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 reason, 5 fp, 6 src, 7}: 8 9buildDunePackage { 10 inherit src; 11 12 pname = "dir"; 13 version = "0.0.1-unstable-2024-05-07"; 14 15 nativeBuildInputs = [ 16 reason 17 ]; 18 19 propagatedBuildInputs = [ 20 fp 21 ]; 22 23 meta = { 24 description = "Library that provides a consistent API for common system, user and application directories consistently on all platforms"; 25 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/dir"; 26 license = lib.licenses.mit; 27 maintainers = [ ]; 28 }; 29}