Skip to content

Commit

Permalink
#2912 nix: try to fix adding lurk only on Linux
Browse files Browse the repository at this point in the history
Signed-off-by: Patrizio Bekerle <[email protected]>
  • Loading branch information
pbek committed Dec 9, 2024
1 parent f8a9acf commit 7291fe3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
librsvg
imagemagick
libicns
] ++ lib.optionalString stdenv.isLinux [
lurk # strace replacement
];
] ++ (if pkgs.stdenv.isLinux then [
pkgs.lurk # strace replacement
] else []);

buildInputs = with pkgs; with qt6; [
qtbase
Expand Down

0 comments on commit 7291fe3

Please sign in to comment.