Adding optipng, and a basic expression for pdfread.

svn path=/nixpkgs/trunk/; revision=20802
This commit is contained in:
Lluís Batlle i Rossell
2010-03-23 23:04:41 +00:00
parent 60b8b2b613
commit a991201bf5
3 changed files with 75 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
# This package comes with its own copy of zlib, libpng and pngxtern
stdenv.mkDerivation rec {
name = "optipng-0.6.4";
src = fetchurl {
url = "mirror://sourceforge/optipng/${name}.tar.gz";
sha256 = "0ivnm07zlww20i7dba0zk5dyg8f3hlj03j7vazq520r43lmqj01h";
};
meta = {
homepage = http://optipng.sourceforge.net/;
description = "A PNG optimizer";
license = "bsd";
};
}