Adding libwebp
svn path=/nixpkgs/trunk/; revision=32146
This commit is contained in:
parent
d83e1b4b5d
commit
3782f740a0
20
pkgs/development/libraries/libwebp/default.nix
Normal file
20
pkgs/development/libraries/libwebp/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{stdenv, fetchurl, libpng, libjpeg}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libwebp-0.1.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://webp.googlecode.com/files/${name}.tar.gz";
|
||||
sha256 = "1fkssvg99s9ypswh4ywkirgcy1wmy3b6388f3cqj4a4vwdb89ca0";
|
||||
};
|
||||
|
||||
buildInputs = [ libpng libjpeg ];
|
||||
|
||||
meta = {
|
||||
homepage = http://code.google.com/p/webp/;
|
||||
description = "Tools and library for the WebP image format";
|
||||
|
||||
/* It has its own licence, google-related, but that looks like BSD */
|
||||
license = "free";
|
||||
};
|
||||
}
|
@ -4233,6 +4233,8 @@ let
|
||||
|
||||
libvorbis = callPackage ../development/libraries/libvorbis { };
|
||||
|
||||
libwebp = callPackage ../development/libraries/libwebp { };
|
||||
|
||||
libwmf = callPackage ../development/libraries/libwmf { };
|
||||
|
||||
libwpd = callPackage ../development/libraries/libwpd {
|
||||
|
Loading…
Reference in New Issue
Block a user