mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 10:16:33 +01:00
use fetchpatch instead
This commit is contained in:
parent
414fc93402
commit
fd7d5a2161
1 changed files with 5 additions and 5 deletions
10
flake.nix
10
flake.nix
|
@ -27,10 +27,6 @@
|
|||
url = "https://github.com/AdenMck/PrismLauncher/commit/36df231f7ad5f8d54d08c4d2c5f99f6d000fc507.patch";
|
||||
flake = false;
|
||||
};
|
||||
adwaita-theming-support = {
|
||||
url = "https://aur.archlinux.org/cgit/aur.git/plain/theming_patch.diff?h=libadwaita-without-adwaita-git";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs@{
|
||||
|
@ -83,7 +79,11 @@
|
|||
});
|
||||
libadwaita = super.libadwaita.overrideAttrs (old: {
|
||||
patches = (old.patches or []) ++ [
|
||||
inputs.adwaita-theming-support
|
||||
(fetchpatch {
|
||||
name = "adwaita-theming-support.diff";
|
||||
url = "https://aur.archlinux.org/cgit/aur.git/plain/theming_patch.diff?h=libadwaita-without-adwaita-git";
|
||||
hash = "";
|
||||
})
|
||||
];
|
||||
});
|
||||
discord = super.discord.overrideAttrs (old: {
|
||||
|
|
Loading…
Reference in a new issue