Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 fp, 5 reason, 6 src, 7}: 8 9buildDunePackage { 10 inherit src; 11 12 pname = "fs"; 13 version = "0.0.2-unstable-2024-05-07"; 14 15 nativeBuildInputs = [ 16 reason 17 ]; 18 19 propagatedBuildInputs = [ 20 fp 21 ]; 22 23 meta = { 24 description = "Reason Native file system API"; 25 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/fs"; 26 license = lib.licenses.mit; 27 maintainers = [ ]; 28 }; 29}