nixpkgs/pkgs/development/libraries/vxl/default.nix
Lluís Batlle i Rossell 2c9cdbb8f2 Revert "Version update for vxl", because:
- Although the file for 1.14 is in the upstream file repository, it's not
  published in their web, which still talks about 1.13 for the stable release.
- The cmake files comming with this vxl fail (because of some weird dependency
  on a doxygen.cmake file)

This reverts commit 22577

svn path=/nixpkgs/trunk/; revision=22750
2010-07-27 15:57:01 +00:00

26 lines
750 B
Nix

{ stdenv, fetchurl, unzip, cmake, libtiff, expat, zlib, libpng, libjpeg }:
stdenv.mkDerivation {
name = "vxl-1.13.0";
src = fetchurl {
url = mirror://sourceforge/vxl/vxl-1.13.0.zip;
sha256 = "05xk9dfkqsznp1dic8rcsdhgdp12bikwx1zpci0w3s20fs8q8nn1";
};
buildInputs = [ cmake unzip libtiff expat zlib libpng libjpeg ];
cmakeFlags = if (stdenv.system == "x86_64-linux") then
"-DCMAKE_CXX_FLAGS=-fPIC -DCMAKE_C_FLAGS=-fPIC"
else
"";
meta = {
description = "C++ Libraries for Computer Vision Research and Implementation";
homepage = http://vxl.sourceforge.net/;
license = "VXL License";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}