summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-06-02 18:52:46 +0200
committerGitHub <noreply@github.com>2022-06-02 18:52:46 +0200
commit537729541fd11c9168dfbb164f70c260ba7f852b (patch)
tree2f60ea81c84db0eacbae64630e95e3aeafb77d62 /pkgs
parent64870a0c570bbed2bf9ed511c27bee28eba8c39c (diff)
parentdb228fed78133ae3c7078772b43267c803702d5e (diff)
downloadnixpkgs-537729541fd11c9168dfbb164f70c260ba7f852b.tar
nixpkgs-537729541fd11c9168dfbb164f70c260ba7f852b.tar.gz
nixpkgs-537729541fd11c9168dfbb164f70c260ba7f852b.tar.bz2
nixpkgs-537729541fd11c9168dfbb164f70c260ba7f852b.tar.lz
nixpkgs-537729541fd11c9168dfbb164f70c260ba7f852b.tar.xz
nixpkgs-537729541fd11c9168dfbb164f70c260ba7f852b.tar.zst
nixpkgs-537729541fd11c9168dfbb164f70c260ba7f852b.zip
Merge pull request #171640 from ilya-fedin/reduce-closure
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/graphics/gimp/default.nix2
-rw-r--r--pkgs/applications/networking/remote/teamviewer/default.nix2
-rw-r--r--pkgs/development/python2-modules/pygtk/default.nix1
3 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/gimp/default.nix b/pkgs/applications/graphics/gimp/default.nix
index 55c95c95cf7..cefba7ff774 100644
--- a/pkgs/applications/graphics/gimp/default.nix
+++ b/pkgs/applications/graphics/gimp/default.nix
@@ -115,6 +115,8 @@ in stdenv.mkDerivation rec {
     libwebp
     libheif
     python
+    # Duplicated here because python.withPackages does not expose the dev output with pkg-config files
+    python2.pkgs.pygtk
     libexif
     xorg.libXpm
     glib-networking
diff --git a/pkgs/applications/networking/remote/teamviewer/default.nix b/pkgs/applications/networking/remote/teamviewer/default.nix
index 7ee1cc9ab4f..ba6d3d3c0f8 100644
--- a/pkgs/applications/networking/remote/teamviewer/default.nix
+++ b/pkgs/applications/networking/remote/teamviewer/default.nix
@@ -6,6 +6,8 @@
 
 mkDerivation rec {
   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";
 
   src = fetchurl {
diff --git a/pkgs/development/python2-modules/pygtk/default.nix b/pkgs/development/python2-modules/pygtk/default.nix
index 465d711ec6f..08e1520c4c8 100644
--- a/pkgs/development/python2-modules/pygtk/default.nix
+++ b/pkgs/development/python2-modules/pygtk/default.nix
@@ -3,6 +3,7 @@
 
 buildPythonPackage rec {
   pname = "pygtk";
+  outputs = [ "out" "dev" ];
   version = "2.24.0";
 
   disabled = isPy3k;