From 2c9cdbb8f235dcb545f6f4adb4c7bc79153d5c53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Tue, 27 Jul 2010 15:57:01 +0000 Subject: [PATCH] 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 --- pkgs/development/libraries/vxl/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/vxl/default.nix b/pkgs/development/libraries/vxl/default.nix index 635cc6c13b6..c9ba078a6fa 100644 --- a/pkgs/development/libraries/vxl/default.nix +++ b/pkgs/development/libraries/vxl/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, unzip, cmake, libtiff, expat, zlib, libpng, libjpeg }: stdenv.mkDerivation { - name = "vxl-1.14.0"; + name = "vxl-1.13.0"; src = fetchurl { - url = mirror://sourceforge/vxl/vxl-1.14.0.zip; - sha256 = "0434wxvxyr9baq3q5rhjcqvlaq5p9n5ax400bdrc49ff2jddq0h2"; + url = mirror://sourceforge/vxl/vxl-1.13.0.zip; + sha256 = "05xk9dfkqsznp1dic8rcsdhgdp12bikwx1zpci0w3s20fs8q8nn1"; }; buildInputs = [ cmake unzip libtiff expat zlib libpng libjpeg ]; @@ -13,6 +13,7 @@ stdenv.mkDerivation { "-DCMAKE_CXX_FLAGS=-fPIC -DCMAKE_C_FLAGS=-fPIC" else ""; + meta = { description = "C++ Libraries for Computer Vision Research and Implementation";