fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, unzip, cmake, libtiff, expat, zlib, libpng, libjpeg }:
2stdenv.mkDerivation {
3 name = "vxl-1.17.0";
4
5 src = fetchurl {
6 url = mirror://sourceforge/vxl/vxl-1.17.0.zip;
7 sha256 = "1qg7i8h201pa8jljg7vph4rlxk6n5cj9f9gd1hkkmbw6fh44lsxh";
8 };
9
10 buildInputs = [ cmake unzip libtiff expat zlib libpng libjpeg ];
11
12 # BUILD_OUL wants old linux headers for videodev.h, not available
13 # in stdenv linux headers
14 # BUILD_BRL fails to find open()
15 cmakeFlags = "-DBUILD_TESTING=OFF -DBUILD_OUL=OFF -DBUILD_BRL=OFF -DBUILD_CONTRIB=OFF "
16 + (if stdenv.system == "x86_64-linux" then
17 "-DCMAKE_CXX_FLAGS=-fPIC -DCMAKE_C_FLAGS=-fPIC"
18 else
19 "");
20
21 enableParallelBuilding = true;
22
23 meta = {
24 description = "C++ Libraries for Computer Vision Research and Implementation";
25 homepage = http://vxl.sourceforge.net/;
26 license = "VXL License";
27 maintainers = with stdenv.lib.maintainers; [viric];
28 platforms = with stdenv.lib.platforms; linux;
29 };
30}