Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 re, 5 reason, 6 pastel, 7 src, 8}: 9 10buildDunePackage { 11 inherit src; 12 13 pname = "cli"; 14 version = "0.0.1-alpha-unstable-2024-05-07"; 15 16 nativeBuildInputs = [ 17 reason 18 ]; 19 20 buildInputs = [ 21 re 22 pastel 23 ]; 24 25 meta = { 26 downloadPage = "https://github.com/reasonml/reason-native"; 27 homepage = "https://reason-native.com/"; 28 license = lib.licenses.mit; 29 maintainers = [ ]; 30 }; 31}