about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/vxl/default.nix
blob: 878271b431786ca57b9c7dcc674e1153ea4cc927 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, fetchFromGitHub, unzip, cmake, libtiff, expat, zlib, libpng, libjpeg }:
stdenv.mkDerivation rec {
  pname = "vxl";
  version = "3.3.2";

  src = fetchFromGitHub {
    owner = "vxl";
    repo = "vxl";
    rev = "v${version}";
    sha256 = "0qmqrijl14xlsbd77jk9ygg44h3lqzpswia6yif1iia6smqccjsr";
  };

  nativeBuildInputs = [ cmake unzip ];
  buildInputs = [ libtiff expat zlib libpng libjpeg ];

  meta = {
    description = "C++ Libraries for Computer Vision Research and Implementation";
    homepage = "http://vxl.sourceforge.net/";
    license = "VXL License";
    maintainers = with lib.maintainers; [viric];
    platforms = with lib.platforms; linux;
  };
}