hosts: override rbw to 1.12.1
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run

This commit is contained in:
Aly Raffauf 2024-08-04 00:03:18 -04:00
parent 5b8e60d78e
commit 15073bac50
3 changed files with 21 additions and 2 deletions

View file

@ -65,7 +65,7 @@ in {
rbw = { rbw = {
enable = true; enable = true;
package = unstable.rbw; package = pkgs.rbw;
settings = { settings = {
email = "alyraffauf@fastmail.com"; email = "alyraffauf@fastmail.com";

View file

@ -30,7 +30,7 @@ in {
rbw = { rbw = {
enable = true; enable = true;
package = unstable.rbw; package = pkgs.rbw;
settings = { settings = {
email = "dustinmraffauf@gmail.com"; email = "dustinmraffauf@gmail.com";

View file

@ -26,6 +26,25 @@
overlays = [ overlays = [
(final: prev: { (final: prev: {
rbw = prev.rbw.override (super: {
rustPlatform =
super.rustPlatform
// {
buildRustPackage = args:
super.rustPlatform.buildRustPackage (args
// {
version = "1.12.1";
src = pkgs.fetchFromGitHub {
owner = "doy";
repo = "rbw";
rev = "1.12.1";
hash = "sha256-+1kalFyhk2UL+iVzuFLDsSSTudrd4QpXw+3O4J+KsLc=";
};
cargoHash = "sha256-cKbbsDb449WANGT+x8APhzs+hf5SR3RBsCBWDNceRMA=";
});
};
});
rofi-bluetooth = rofi-bluetooth =
prev.rofi-bluetooth.overrideAttrs prev.rofi-bluetooth.overrideAttrs
(old: { (old: {