summary refs log tree commit diff
path: root/pkgs/development/libraries/libmng
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-10-16 09:09:46 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-10-28 10:15:53 +0100
commit5d862db694c01643eb76b38953e9525acdd6f051 (patch)
treeee90fe6d09a8c9507b897a332e7db32f8277bfd1 /pkgs/development/libraries/libmng
parent74d4fc795921a57775739a38fa741afe8fa23ed9 (diff)
downloadnixpkgs-5d862db694c01643eb76b38953e9525acdd6f051.tar
nixpkgs-5d862db694c01643eb76b38953e9525acdd6f051.tar.gz
nixpkgs-5d862db694c01643eb76b38953e9525acdd6f051.tar.bz2
nixpkgs-5d862db694c01643eb76b38953e9525acdd6f051.tar.lz
nixpkgs-5d862db694c01643eb76b38953e9525acdd6f051.tar.xz
nixpkgs-5d862db694c01643eb76b38953e9525acdd6f051.tar.zst
nixpkgs-5d862db694c01643eb76b38953e9525acdd6f051.zip
libmng: split dev and docdev outputs
Diffstat (limited to 'pkgs/development/libraries/libmng')
-rw-r--r--pkgs/development/libraries/libmng/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libmng/default.nix b/pkgs/development/libraries/libmng/default.nix
index 234f56863c0..b97ee6a4ced 100644
--- a/pkgs/development/libraries/libmng/default.nix
+++ b/pkgs/development/libraries/libmng/default.nix
@@ -8,13 +8,16 @@ stdenv.mkDerivation rec {
     sha256 = "0l5wa3b9rr4zl49zbbjpapqyccqjwzkzw1ph3p4pk9p5h73h9317";
   };
 
+  outputs = [ "dev" "out" "docdev" ];
+  outputMan= "docdev";
+
   propagatedBuildInputs = [ zlib libpng libjpeg lcms2 ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Reference library for reading, displaying, writing and examining Multiple-Image Network Graphics";
     homepage = http://www.libmng.com;
-    license = stdenv.lib.licenses.zlib;
-    maintainers = with stdenv.lib.maintainers; [ marcweber urkud ];
-    hydraPlatforms = stdenv.lib.platforms.linux;
+    license = licenses.zlib;
+    maintainers = with maintainers; [ marcweber urkud ];
+    hydraPlatforms = platforms.linux;
   };
 }