mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Adding Vigra
svn path=/nixpkgs/trunk/; revision=22809
This commit is contained in:
parent
aaff5b7a46
commit
79dec6e9a7
24
pkgs/development/libraries/vigra/default.nix
Normal file
24
pkgs/development/libraries/vigra/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user