3
0
Fork 0
forked from mirrors/nixpkgs

Adding pngnq.

svn path=/nixpkgs/trunk/; revision=20801
This commit is contained in:
Lluís Batlle i Rossell 2010-03-23 22:40:46 +00:00
parent c80ae6de3a
commit 60b8b2b613
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ stdenv, fetchurl, libpng }:
stdenv.mkDerivation rec {
name = "pngnq-1.0";
src = fetchurl {
url = "mirror://sourceforge/pngnq/${name}.tar.gz";
sha256 = "19q07hlhr9p5d0wqgzyrcxdnqlczdwpiibcji0k2a6jfmxrcn4rl";
};
buildInputs = [ libpng ];
meta = {
homepage = http://pngnq.sourceforge.net/;
description = "A PNG quantizer";
license = "bsd";
};
}

View file

@ -1356,6 +1356,10 @@ let
inherit fetchurl stdenv libpng;
};
pngnq = import ../tools/graphics/pngnq {
inherit fetchurl stdenv libpng;
};
povray = import ../tools/graphics/povray {
inherit fetchurl stdenv;
};