fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
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 cmakeFlags = [
22 "-DCMAKE_BUILD_TYPE=Release"
23 ];
24
25 meta = {
26 description = "Open Source Biometric Recognition";
27 homepage = http://openbiometrics.org/;
28 license = stdenv.lib.licenses.asl20;
29 maintainers = with stdenv.lib.maintainers; [flosse];
30 platforms = with stdenv.lib.platforms; linux;
31 broken = true;
32 };
33}