mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
17 lines
332 B
Nix
17 lines
332 B
Nix
{ lib, stdenvNoCC, breezy }:
|
|
lib.fetchers.withNormalizedHash { } (
|
|
{ url, rev, outputHash, outputHashAlgo }:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
name = "bzr-export";
|
|
|
|
builder = ./builder.sh;
|
|
nativeBuildInputs = [ breezy ];
|
|
|
|
inherit outputHash outputHashAlgo;
|
|
outputHashMode = "recursive";
|
|
|
|
inherit url rev;
|
|
}
|
|
)
|