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

20 lines
271 B
Nix
Raw Normal View History

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