summaryrefslogtreecommitdiffstats
path: root/pkgs/applications
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-05-12 00:25:07 +0200
committerNaïm Favier <n@monade.li>2022-05-12 11:01:23 +0200
commit3c77d361b5e8e8d9173282538067cce6bcc3cc29 (patch)
treef7b722de50a9e0db881fd8695810aeb527494ade /pkgs/applications
parent88369997e1db7e1819b7b940fc2740f188d6608d (diff)
makeShellWrapper: add explicitly named attribute
So that things that use the makeShellWrapper/wrapProgramShell functions can depend on makeShellWrapper explicitly, which should ease migration in the future.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/instant-messengers/discord/linux.nix4
-rw-r--r--pkgs/applications/science/logic/tlaplus/toolbox.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/instant-messengers/discord/linux.nix b/pkgs/applications/networking/instant-messengers/discord/linux.nix
index b36dc935f1ce..b960caa64d80 100644
--- a/pkgs/applications/networking/instant-messengers/discord/linux.nix
+++ b/pkgs/applications/networking/instant-messengers/discord/linux.nix
@@ -1,5 +1,5 @@
{ pname, version, src, meta, binaryName, desktopName, autoPatchelfHook
-, makeDesktopItem, lib, stdenv, wrapGAppsHook, makeWrapper, alsa-lib, at-spi2-atk
+, makeDesktopItem, lib, stdenv, wrapGAppsHook, makeShellWrapper, alsa-lib, at-spi2-atk
, at-spi2-core, atk, cairo, cups, dbus, expat, fontconfig, freetype, gdk-pixbuf
, glib, gtk3, libcxx, libdrm, libnotify, libpulseaudio, libuuid, libX11
, libXScrnSaver, libXcomposite, libXcursor, libXdamage, libXext, libXfixes
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
mesa
nss
wrapGAppsHook
- makeWrapper
+ makeShellWrapper
];
dontWrapGApps = true;
diff --git a/pkgs/applications/science/logic/tlaplus/toolbox.nix b/pkgs/applications/science/logic/tlaplus/toolbox.nix
index ff763608cbab..3c53e66c8bd9 100644
--- a/pkgs/applications/science/logic/tlaplus/toolbox.nix
+++ b/pkgs/applications/science/logic/tlaplus/toolbox.nix
@@ -1,6 +1,6 @@
{ lib
, fetchzip
-, makeWrapper
+, makeShellWrapper
, makeDesktopItem
, stdenv
, gtk3
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
buildInputs = [ gtk3 ];
nativeBuildInputs = [
- makeWrapper
+ makeShellWrapper
wrapGAppsHook
];