python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / vxl / default.nix
blob878271b431786ca57b9c7dcc674e1153ea4cc927
1 { lib, stdenv, fetchFromGitHub, unzip, cmake, libtiff, expat, zlib, libpng, libjpeg }:
2 stdenv.mkDerivation rec {
3   pname = "vxl";
4   version = "3.3.2";
6   src = fetchFromGitHub {
7     owner = "vxl";
8     repo = "vxl";
9     rev = "v${version}";
10     sha256 = "0qmqrijl14xlsbd77jk9ygg44h3lqzpswia6yif1iia6smqccjsr";
11   };
13   nativeBuildInputs = [ cmake unzip ];
14   buildInputs = [ libtiff expat zlib libpng libjpeg ];
16   meta = {
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;
22   };