vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / build-support / fetchbzr / default.nix
blob1f6f0f2a788e20206321438df94c4338f1348669
1 { lib, stdenvNoCC, breezy }:
2 lib.fetchers.withNormalizedHash { } (
3   { url, rev, outputHash, outputHashAlgo }:
5   stdenvNoCC.mkDerivation {
6     name = "bzr-export";
8     builder = ./builder.sh;
9     nativeBuildInputs = [ breezy ];
11     inherit outputHash outputHashAlgo;
12     outputHashMode = "recursive";
14     inherit url rev;
15   }