WIP: rbw 1.8.3

This commit is contained in:
Bruno BELANYI 2023-07-20 22:19:10 +01:00
parent 986139e1a5
commit 14eebada6e

18
overlays/rbw/default.nix Normal file
View file

@ -0,0 +1,18 @@
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=";
});
});
}