core/pkgs/build-support/fetchbzr/default.nix

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

20 lines
271 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ stdenvNoCC, breezy }:
{
url,
rev,
sha256,
}:
stdenvNoCC.mkDerivation {
name = "bzr-export";
builder = ./builder.sh;
nativeBuildInputs = [ breezy ];
outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = sha256;
inherit url rev;
}