Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at flake-libs 23 lines 492 B view raw
1{ 2 lib, 3 buildPythonApplication, 4 fetchPypi, 5}: 6buildPythonApplication rec { 7 version = "0.0.42"; 8 pname = "dazel"; 9 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-JE7+GS7DpuFoC2LK3dvYvjtOdzRxFMHzgZRfvrGBDtQ="; 13 }; 14 15 meta = { 16 homepage = "https://github.com/nadirizr/dazel"; 17 description = "Run Google's bazel inside a docker container via a seamless proxy."; 18 license = lib.licenses.mit; 19 maintainers = with lib.maintainers; [ 20 malt3 21 ]; 22 }; 23}