1 { lib, stdenv, fetchFromGitHub, unzip, cmake, libtiff, expat, zlib, libpng, libjpeg }:
2 stdenv.mkDerivation rec {
6 src = fetchFromGitHub {
10 sha256 = "0qmqrijl14xlsbd77jk9ygg44h3lqzpswia6yif1iia6smqccjsr";
13 nativeBuildInputs = [ cmake unzip ];
14 buildInputs = [ libtiff expat zlib libpng libjpeg ];
17 description = "C++ Libraries for Computer Vision Research and Implementation";
18 homepage = "http://vxl.sourceforge.net/";
19 license = "VXL License";
20 maintainers = with lib.maintainers; [viric];
21 platforms = with lib.platforms; linux;