All checks were successful
ci/woodpecker/push/check Pipeline was successful
18 lines
522 B
Nix
18 lines
522 B
Nix
final: prev:
|
|
{
|
|
# FIXME: https://nixpk.gs/pr-tracker.html?pr=244868
|
|
rbw = prev.rbw.overrideAttrs (oa: rec {
|
|
version = "1.8.3";
|
|
|
|
src = final.fetchzip {
|
|
url = "https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz";
|
|
hash = "sha256-dC/x+ihH1POIFN/8pbk967wATXKU4YVBGI0QCo8d+SY=";
|
|
};
|
|
|
|
cargoDeps = oa.cargoDeps.overrideAttrs (final.lib.const {
|
|
name = "${oa.pname}-vendor.tar.gz";
|
|
inherit src;
|
|
outputHash = "sha256-wlL8LwZHXZ5YNEWr/9277KtKhhD8iq+e4baaJ1cydfA=";
|
|
});
|
|
});
|
|
}
|