summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-11-18 09:16:34 -0600
committerGitHub <noreply@github.com>2016-11-18 09:16:34 -0600
commitb32a1c7244b8a78c8d84268f38830c6136b29e5c (patch)
tree76d83619f65a1c7cfb07e198871f21791b2ba52c /pkgs/development/python-modules
parente38b74ba89d3d03e01ee751131d2a6dc316ac33a (diff)
parent992bc3e762e9bc6b3edeaffe516fd31d1dad871b (diff)
downloadnixlib-b32a1c7244b8a78c8d84268f38830c6136b29e5c.tar
nixlib-b32a1c7244b8a78c8d84268f38830c6136b29e5c.tar.gz
nixlib-b32a1c7244b8a78c8d84268f38830c6136b29e5c.tar.bz2
nixlib-b32a1c7244b8a78c8d84268f38830c6136b29e5c.tar.lz
nixlib-b32a1c7244b8a78c8d84268f38830c6136b29e5c.tar.xz
nixlib-b32a1c7244b8a78c8d84268f38830c6136b29e5c.tar.zst
nixlib-b32a1c7244b8a78c8d84268f38830c6136b29e5c.zip
Merge pull request #20428 from ttuegel/multiple-outputs-gtk
Use multiple outputs for gtkmm and friends
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pygobject/3.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pygobject/3.nix b/pkgs/development/python-modules/pygobject/3.nix
index dfddd7dddbdb..33bb1d5a4cab 100644
--- a/pkgs/development/python-modules/pygobject/3.nix
+++ b/pkgs/development/python-modules/pygobject/3.nix
@@ -10,6 +10,8 @@ mkPythonDerivation rec {
     sha256 = "08b29cfb08efc80f7a8630a2734dec65a99c1b59f1e5771c671d2e4ed8a5cbe7";
   };
 
+  outputs = [ "out" "dev" ];
+
   buildInputs = [ pkgconfig glib gobjectIntrospection ]
                  ++ stdenv.lib.optionals stdenv.isDarwin [ which ncurses ];
   propagatedBuildInputs = [ pycairo cairo ];