summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2018-07-24 23:27:01 +0200
committerGitHub <noreply@github.com>2018-07-24 23:27:01 +0200
commit7e396ecd937d0558b250c13f12a22888231857d9 (patch)
tree7d8654a08844f1f674e8979fdafd3c206ccd6e96 /pkgs/applications/networking
parent1f1eb6fdc7e8e92ad2d9f6d70f13b1bf4ef011ec (diff)
parent31df054e9648fd679fad6ec6756847bbaf093a5d (diff)
downloadnixlib-7e396ecd937d0558b250c13f12a22888231857d9.tar
nixlib-7e396ecd937d0558b250c13f12a22888231857d9.tar.gz
nixlib-7e396ecd937d0558b250c13f12a22888231857d9.tar.bz2
nixlib-7e396ecd937d0558b250c13f12a22888231857d9.tar.lz
nixlib-7e396ecd937d0558b250c13f12a22888231857d9.tar.xz
nixlib-7e396ecd937d0558b250c13f12a22888231857d9.tar.zst
nixlib-7e396ecd937d0558b250c13f12a22888231857d9.zip
Merge pull request #43903 from averelld/fix-pidgin-plugin-wrapper
fix pidgin-with-plugins build
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/instant-messengers/pidgin/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/instant-messengers/pidgin/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/default.nix
index 430357cc666a..ec3bb6a463e6 100644
--- a/pkgs/applications/networking/instant-messengers/pidgin/default.nix
+++ b/pkgs/applications/networking/instant-messengers/pidgin/default.nix
@@ -77,6 +77,6 @@ let unwrapped = stdenv.mkDerivation rec {
 
 in if plugins == [] then unwrapped
     else import ./wrapper.nix {
-      inherit stdenv makeWrapper symlinkJoin plugins;
+      inherit makeWrapper symlinkJoin plugins;
       pidgin = unwrapped;
     }