pipelight: remove unused inputs, use stdenv_32bit

+7 -6
+6 -6
pkgs/tools/misc/pipelight/default.nix
··· 1 - { stdenv, fetchurl, fetchgit, autoconf, automake, wineStaging, perl, xorg 2 - , gnupg, gcc_multi, mesa, curl, bash, cacert, cabextract, utillinux, attr 3 - }: 4 5 let 6 wine_custom = wineStaging; ··· 19 sha256 = "1i440rf22fmd2w86dlm1mpi3nb7410rfczc0yldnhgsvp5p3sm5f"; 20 }; 21 22 - buildInputs = [ wine_custom xorg.libX11 gcc_multi mesa curl ]; 23 propagatedbuildInputs = [ curl cabextract ]; 24 25 patches = [ ./pipelight.patch ]; 26 27 configurePhase = '' 28 - patchShebangs . 29 ./configure \ 30 --prefix=$out \ 31 --moz-plugin-path=$out/${mozillaPluginPath} \ ··· 56 homepage = "http://pipelight.net/"; 57 license = with stdenv.lib.licenses; [ mpl11 gpl2 lgpl21 ]; 58 description = "A wrapper for using Windows plugins in Linux browsers"; 59 - maintainers = with stdenv.lib.maintainers; [skeidel]; 60 platforms = with stdenv.lib.platforms; linux; 61 }; 62 }
··· 1 + { stdenv, fetchurl, bash, cabextract, curl, gnupg, libX11, mesa, perl, wineStaging 2 + }: 3 4 let 5 wine_custom = wineStaging; ··· 18 sha256 = "1i440rf22fmd2w86dlm1mpi3nb7410rfczc0yldnhgsvp5p3sm5f"; 19 }; 20 21 + buildInputs = [ wine_custom libX11 mesa curl ]; 22 + 23 propagatedbuildInputs = [ curl cabextract ]; 24 25 patches = [ ./pipelight.patch ]; 26 27 configurePhase = '' 28 + patchShebangs . 29 ./configure \ 30 --prefix=$out \ 31 --moz-plugin-path=$out/${mozillaPluginPath} \ ··· 56 homepage = "http://pipelight.net/"; 57 license = with stdenv.lib.licenses; [ mpl11 gpl2 lgpl21 ]; 58 description = "A wrapper for using Windows plugins in Linux browsers"; 59 + maintainers = with stdenv.lib.maintainers; [ skeidel ]; 60 platforms = with stdenv.lib.platforms; linux; 61 }; 62 }
+1
pkgs/top-level/all-packages.nix
··· 7970 physfs = callPackage ../development/libraries/physfs { }; 7971 7972 pipelight = callPackage ../tools/misc/pipelight { 7973 wineStaging = pkgsi686Linux.wineStaging; 7974 }; 7975
··· 7970 physfs = callPackage ../development/libraries/physfs { }; 7971 7972 pipelight = callPackage ../tools/misc/pipelight { 7973 + stdenv = stdenv_32bit; 7974 wineStaging = pkgsi686Linux.wineStaging; 7975 }; 7976