mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
libwebp: Enable (de)mux and decoder.
This is required to build Chromium. Making it a non-optional dependency as it shouldn't really hurt other packages using it. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
c9c9ca38b9
commit
5e95ae5e88
|
@ -10,6 +10,12 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [ libpng libjpeg giflib libtiff ];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-libwebpmux"
|
||||
"--enable-libwebpdemux"
|
||||
"--enable-libwebpdecoder"
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = http://code.google.com/p/webp/;
|
||||
description = "Tools and library for the WebP image format";
|
||||
|
|
Loading…
Reference in a new issue