about summary refs log tree commit diff
path: root/pkgs/tools/misc/pipelight
diff options
context:
space:
mode:
authorCillian de Róiste <cillian.deroiste@gmail.com>2015-11-16 15:02:54 +0100
committerCillian de Róiste <cillian.deroiste@gmail.com>2015-11-16 15:02:54 +0100
commit03188ce0efed95a1f362909565c9ccfc5118d456 (patch)
tree5608874d23dcb9e2b6bb31c8240dc0b2b2eab5f6 /pkgs/tools/misc/pipelight
parentbd33a4149364ee5123070fe6e706876fa2ebf984 (diff)
parent71a1e3acb620d63514135396df43b1834d4c9c95 (diff)
pipelight: remove unused inputs, use stdenv_32bit
Diffstat (limited to 'pkgs/tools/misc/pipelight')
-rw-r--r--pkgs/tools/misc/pipelight/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/tools/misc/pipelight/default.nix b/pkgs/tools/misc/pipelight/default.nix
index 40f441e065df6..b79f43cfbc35c 100644
--- a/pkgs/tools/misc/pipelight/default.nix
+++ b/pkgs/tools/misc/pipelight/default.nix
@@ -1,6 +1,5 @@
-{ stdenv, fetchurl, fetchgit, autoconf, automake, wineStaging, perl, xorg
-  , gnupg, gcc_multi, mesa, curl, bash, cacert, cabextract, utillinux, attr
-  }:
+{ stdenv, fetchurl, bash, cabextract, curl, gnupg, libX11, mesa, perl, wineStaging
+ }:
 
 let
   wine_custom = wineStaging;
@@ -19,13 +18,14 @@ in stdenv.mkDerivation rec {
     sha256 = "1i440rf22fmd2w86dlm1mpi3nb7410rfczc0yldnhgsvp5p3sm5f";
   };
 
-  buildInputs = [ wine_custom xorg.libX11 gcc_multi mesa curl ];
+  buildInputs = [ wine_custom libX11 mesa curl ];
+
   propagatedbuildInputs = [ curl cabextract ];
 
   patches = [ ./pipelight.patch ];
 
   configurePhase = ''
-    patchShebangs . 
+    patchShebangs .
     ./configure \
       --prefix=$out \
       --moz-plugin-path=$out/${mozillaPluginPath} \
@@ -56,7 +56,7 @@ in stdenv.mkDerivation rec {
     homepage = "http://pipelight.net/";
     license = with stdenv.lib.licenses; [ mpl11 gpl2 lgpl21 ];
     description = "A wrapper for using Windows plugins in Linux browsers";
-    maintainers = with stdenv.lib.maintainers; [skeidel];
+    maintainers = with stdenv.lib.maintainers; [ skeidel ];
     platforms = with stdenv.lib.platforms; linux;
   };
 }