e10001042d
This makes it match the behaviour of fetchgit and fetchsvn, so it's easier to write scripts that support all of them.
16 lines
253 B
Nix
16 lines
253 B
Nix
{ stdenv, bazaar }:
|
|
{ url, rev, sha256 }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "bzr-export";
|
|
|
|
builder = ./builder.sh;
|
|
buildInputs = [ bazaar ];
|
|
|
|
outputHashAlgo = "sha256";
|
|
outputHashMode = "recursive";
|
|
outputHash = sha256;
|
|
|
|
inherit url rev;
|
|
}
|