Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 25 lines 358 B view raw
1{ 2 lib, 3 stdenvNoCC, 4 breezy, 5}: 6lib.fetchers.withNormalizedHash { } ( 7 { 8 url, 9 rev, 10 outputHash, 11 outputHashAlgo, 12 }: 13 14 stdenvNoCC.mkDerivation { 15 name = "bzr-export"; 16 17 builder = ./builder.sh; 18 nativeBuildInputs = [ breezy ]; 19 20 inherit outputHash outputHashAlgo; 21 outputHashMode = "recursive"; 22 23 inherit url rev; 24 } 25)