Adding Vigra

svn path=/nixpkgs/trunk/; revision=22809
This commit is contained in:
Lluís Batlle i Rossell 2010-07-29 14:38:39 +00:00
parent aaff5b7a46
commit 79dec6e9a7
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, cmake, libtiff, libpng, libjpeg, doxygen, python, fftw }:
stdenv.mkDerivation {
name = "vigra-1.7.0";
src = fetchurl {
url = http://hci.iwr.uni-heidelberg.de/vigra/vigra-1.7.0-src.tar.gz;
sha256 = "1laf9p0h35xpzs98yd13alm17gh40sn9b7z01ylcja4g7p3a3hs4";
};
buildInputs = [ cmake fftw libtiff libpng libjpeg doxygen python ];
cmakeFlags = if (stdenv.system == "x86_64-linux") then
"-DCMAKE_CXX_FLAGS=-fPIC -DCMAKE_C_FLAGS=-fPIC"
else
"";
meta = {
description = "Novel computer vision C++ library with customizable algorithms and data structures";
homepage = http://hci.iwr.uni-heidelberg.de/vigra/;
license = "MIT";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}

View file

@ -5473,6 +5473,10 @@ let
inherit fetchurl stdenv pkgconfig libsndfile;
};
vigra = import ../development/libraries/vigra {
inherit fetchurl stdenv cmake libtiff libpng libjpeg doxygen python fftw;
};
vtk = import ../development/libraries/vtk {
inherit stdenv fetchurl cmake mesa;
inherit (xlibs) libX11 xproto libXt;