summary refs log tree commit diff
path: root/pkgs/development/libraries/openbr/default.nix
blob: 292db910318bdb3c982d30f3be70f02527dfc132 (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
24
25
26
27
28
29
30
31
{ stdenv, fetchgit, cmake, opencv, qt5 }:

stdenv.mkDerivation rec {

  version = "0.5";
  name = "openbr-${version}";

  src = fetchgit {
    url = "https://github.com/biometrics/openbr.git";
    rev = "cc364a89a86698cd8d3052f42a3cb520c929b325";
    sha256 = "16b3mmsf9r1yqqaw89fx0c3bgfg86dz4phry89wqy2hw05szgda3";
  };

  buildInputs = [ opencv qt5 ];

  nativeBuildInputs = [ cmake ];

  enableParallelBuilding = true;

  cmakeFlags = [
    "-DCMAKE_BUILD_TYPE=Release"
  ];

  meta = {
    description = "Open Source Biometric Recognition";
    homepage = http://openbiometrics.org/;
    license = stdenv.lib.licenses.asl20;
    maintainers = with stdenv.lib.maintainers; [flosse];
    platforms = with stdenv.lib.platforms; linux;
  };
}