Merge pull request #171640 from ilya-fedin/reduce-closure
This commit is contained in:
commit
537729541f
3 changed files with 5 additions and 0 deletions
|
@ -115,6 +115,8 @@ in stdenv.mkDerivation rec {
|
||||||
libwebp
|
libwebp
|
||||||
libheif
|
libheif
|
||||||
python
|
python
|
||||||
|
# Duplicated here because python.withPackages does not expose the dev output with pkg-config files
|
||||||
|
python2.pkgs.pygtk
|
||||||
libexif
|
libexif
|
||||||
xorg.libXpm
|
xorg.libXpm
|
||||||
glib-networking
|
glib-networking
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "teamviewer";
|
pname = "teamviewer";
|
||||||
|
# teamviewer itself has not development files but the dev output removes propagated other dev outputs from runtime
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
version = "15.29.4";
|
version = "15.29.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pygtk";
|
pname = "pygtk";
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
version = "2.24.0";
|
version = "2.24.0";
|
||||||
|
|
||||||
disabled = isPy3k;
|
disabled = isPy3k;
|
||||||
|
|
Loading…
Reference in a new issue