Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
358 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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;
}
)