Skip to content

Commit 5dcad41

Browse files
authored
fix(nix): replace wrapGAppsHook with wrapGAppsHook3 (#1189)
wrapGAppsHook has been aliased to wrapGAppsHook3 for a long time. Recently this alias was converted to a throw, breaking the build with newer nixpkgs versions.
1 parent 615978e commit 5dcad41

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

nix/package/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
qt6,
77
ripgrep,
88
stdenv,
9-
wrapGAppsHook,
9+
wrapGAppsHook3,
1010

1111
pillow-jxl-plugin,
1212

@@ -30,7 +30,7 @@ python3Packages.buildPythonApplication {
3030
# Should be unnecessary once PR is pulled.
3131
# PR: https://github.com/NixOS/nixpkgs/pull/271037
3232
# Issue: https://github.com/NixOS/nixpkgs/issues/149812
33-
wrapGAppsHook
33+
wrapGAppsHook3
3434
];
3535
buildInputs = [
3636
qt6.qtbase

nix/shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ let
5151
# Should be unnecessary once PR is pulled.
5252
# PR: https://github.com/NixOS/nixpkgs/pull/271037
5353
# Issue: https://github.com/NixOS/nixpkgs/issues/149812
54-
wrapGAppsHook
54+
wrapGAppsHook3
5555
];
5656
buildInputs = with pkgs.qt6; [
5757
qtbase

0 commit comments

Comments
 (0)