summary refs log tree commit diff
path: root/pkgs/development/libraries/librsvg
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-04-24 07:58:04 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-04-25 19:04:24 -0500
commit160bf21b3a97c1d7fb4281c4d55efad06149ae2f (patch)
tree80122d6402799dc4d107b8f053f368277f877feb /pkgs/development/libraries/librsvg
parent6a64edfa0e38b599ee15f7582d3dbe62b2b884af (diff)
downloadnixpkgs-160bf21b3a97c1d7fb4281c4d55efad06149ae2f.tar
nixpkgs-160bf21b3a97c1d7fb4281c4d55efad06149ae2f.tar.gz
nixpkgs-160bf21b3a97c1d7fb4281c4d55efad06149ae2f.tar.bz2
nixpkgs-160bf21b3a97c1d7fb4281c4d55efad06149ae2f.tar.lz
nixpkgs-160bf21b3a97c1d7fb4281c4d55efad06149ae2f.tar.xz
nixpkgs-160bf21b3a97c1d7fb4281c4d55efad06149ae2f.tar.zst
nixpkgs-160bf21b3a97c1d7fb4281c4d55efad06149ae2f.zip
librsvg: multiple outputs
Diffstat (limited to 'pkgs/development/libraries/librsvg')
-rw-r--r--pkgs/development/libraries/librsvg/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/librsvg/default.nix b/pkgs/development/libraries/librsvg/default.nix
index 0768a21bf54..6147e847b33 100644
--- a/pkgs/development/libraries/librsvg/default.nix
+++ b/pkgs/development/libraries/librsvg/default.nix
@@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
 
   NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
 
+  outputs = [ "dev" "out" ];
+
   buildInputs = [ libxml2 libgsf bzip2 libcroco pango libintlOrEmpty ]
     ++ stdenv.lib.optional enableIntrospection [ gobjectIntrospection ];