summary refs log tree commit diff
path: root/pkgs/development/libraries/gd
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2016-05-22 14:03:16 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2016-05-22 20:03:00 +0200
commit63a8c58185b555e5a0e5a4e34e6ee9c5fde74840 (patch)
treeb0ad8f489b4d74872555324bc61296d357c2b5e5 /pkgs/development/libraries/gd
parentd9796f44f65cb558fe11108d40ddfd4c54151e55 (diff)
downloadnixpkgs-63a8c58185b555e5a0e5a4e34e6ee9c5fde74840.tar
nixpkgs-63a8c58185b555e5a0e5a4e34e6ee9c5fde74840.tar.gz
nixpkgs-63a8c58185b555e5a0e5a4e34e6ee9c5fde74840.tar.bz2
nixpkgs-63a8c58185b555e5a0e5a4e34e6ee9c5fde74840.tar.lz
nixpkgs-63a8c58185b555e5a0e5a4e34e6ee9c5fde74840.tar.xz
nixpkgs-63a8c58185b555e5a0e5a4e34e6ee9c5fde74840.tar.zst
nixpkgs-63a8c58185b555e5a0e5a4e34e6ee9c5fde74840.zip
gd: multiple outputs
Diffstat (limited to 'pkgs/development/libraries/gd')
-rw-r--r--pkgs/development/libraries/gd/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gd/default.nix b/pkgs/development/libraries/gd/default.nix
index bf3b63db399..bb06893e712 100644
--- a/pkgs/development/libraries/gd/default.nix
+++ b/pkgs/development/libraries/gd/default.nix
@@ -25,6 +25,10 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [ zlib fontconfig freetype libjpeg libpng libtiff libXpm ];
 
+  outputs = [ "dev" "out" "bin" ];
+
+  postFixup = ''moveToOutput "bin/gdlib-config" $dev'';
+
   meta = with stdenv.lib; {
     homepage = https://libgd.github.io/;
     description = "A dynamic image creation library";