Skip to content

Commit 218e711

Browse files
committed
quirks: use fetchpatch
1 parent 67c84f5 commit 218e711

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

modules/nixos/sensible-defaults/quirks.nix

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# without deadnix wanting to change this file.
1515
let
1616
# deadnix: skip
17-
inherit (pkgs) fetchpatch2;
17+
inherit (pkgs) fetchpatch;
1818
patches = [
1919
# Here's an example:
2020
# # Added 2025-04-17: switch to maintained fork of Cantata
@@ -24,27 +24,27 @@ let
2424
# })
2525

2626
# Added 2025-10-09: fix failing trurl tests
27-
(fetchpatch2 {
27+
(fetchpatch {
2828
url = "https://github.com/NixOS/nixpkgs/pull/450487.patch";
29-
hash = "sha256-QubgzWD/YdMbBEVpXN0uLVk1B/J4ZwK357lCuiv2sh8=";
29+
hash = "sha256-ooxmucGPN9piqSL8oIbcO/uru8BZRa6lwwXCnpikwVU=";
3030
})
3131

3232
# Added 2025-10-23: fix libquotient and NeoChat build
33-
(fetchpatch2 {
33+
(fetchpatch {
3434
url = "https://github.com/NixOS/nixpkgs/pull/455083.patch";
35-
hash = "sha256-jb/KYkYC2/a/WKeU1OlbW7ulxWp5YYFKlSFmn+NCvf4=";
35+
hash = "sha256-yUOMjGArgtwII1i9vtoRrE61sWPSwKkqj8u353WzH0E=";
3636
})
3737

3838
# Added 2025-10-23: fix pcsx2
39-
(fetchpatch2 {
39+
(fetchpatch {
4040
url = "https://github.com/NixOS/nixpkgs/pull/454958.patch";
41-
hash = "sha256-O1/4ae4w2bq5d6rQQf8zjEreyYF5k/iLRv8x2+xbcZc=";
41+
hash = "sha256-2bR+bhCOHsTNVP/M6lXtCiHuceqT7vkk8/jXEkQNZac=";
4242
})
4343

4444
# Added 2025-10-23: fix kde-rounded-corners
45-
(fetchpatch2 {
45+
(fetchpatch {
4646
url = "https://github.com/NixOS/nixpkgs/pull/455101.patch";
47-
hash = "sha256-uiEiGB+KkXwQUz65HLPJL2f4RlDUGSaIYgPWCI6jAac=";
47+
hash = "sha256-hWHXfeY+PfRgCp/QSExRRpUvut40n79vmFVD216CI4g=";
4848
})
4949
];
5050

0 commit comments

Comments
 (0)