mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
libmng: split dev and docdev outputs
This commit is contained in:
parent
74d4fc7959
commit
5d862db694
1 changed files with 7 additions and 4 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue