1{ stdenv, fetchFromGitHub, cmake, opencv, qtbase, qtsvg }:
2
3stdenv.mkDerivation rec {
4
5 version = "0.5";
6 name = "openbr-${version}";
7
8 src = fetchFromGitHub {
9 owner = "biometrics";
10 repo = "openbr";
11 rev = "cc364a89a86698cd8d3052f42a3cb520c929b325";
12 sha256 = "12y00cf5dlzp9ciiwbihf6xhlkdxpydhscv5hwp83qjdllid9rrz";
13 };
14
15 buildInputs = [ opencv qtbase qtsvg ];
16
17 nativeBuildInputs = [ cmake ];
18
19 enableParallelBuilding = true;
20
21 meta = {
22 description = "Open Source Biometric Recognition";
23 homepage = http://openbiometrics.org/;
24 license = stdenv.lib.licenses.asl20;
25 maintainers = with stdenv.lib.maintainers; [flosse];
26 platforms = with stdenv.lib.platforms; linux;
27 broken = true;
28 };
29}