Adding qtpfsgui and pfstools. Updating fftw because the src URL didn't work anymore.

svn path=/nixpkgs/trunk/; revision=14892
This commit is contained in:
Lluís Batlle i Rossell
2009-04-05 21:41:13 +00:00
parent 349fea53b7
commit 0b76035b66
4 changed files with 63 additions and 4 deletions
+20
View File
@@ -0,0 +1,20 @@
{stdenv, fetchurl, libtiff, openexr, imagemagick, libjpeg, qt, mesa,
freeglut, bzip2, libX11, libpng, expat }:
stdenv.mkDerivation {
name = "pfstools-1.8.0";
src = fetchurl {
url = mirror://sourceforge/pfstools/pfstools-1.8.0.tar.gz;
sha256 = "19gncsfhypiaarsyhmca52yjx8cv86n31b6hxmdac8z4pczhg3gv";
};
buildInputs = [ libtiff openexr imagemagick libjpeg qt mesa freeglut
bzip2 libX11 libpng expat ];
meta = {
homepage = http://pfstools.sourceforge.net/;
description = "Toolkit for manipulation of HDR images";
license = "GPL";
};
}