libpng12: Split into multiple outputs

This commit is contained in:
Tuomas Tynkkynen 2015-10-18 00:16:42 +03:00 committed by Vladimír Čunát
parent fb4c2eb438
commit 796e36afeb

View File

@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
sha256 = "02jwfqk1ahqfvbs9gdyb5v0123by9ws6m7jnfvainig7i7v4jpml";
};
outputs = [ "dev" "out" "man" ];
propagatedBuildInputs = [ zlib ];
passthru = { inherit zlib; };
@ -21,6 +23,8 @@ stdenv.mkDerivation rec {
configureFlags = "--enable-static";
postInstall = ''mv "$out/bin" "$dev/bin"'';
meta = {
description = "The official reference implementation for the PNG file format";
homepage = http://www.libpng.org/pub/png/libpng.html;