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, fetchgit, cmake, opencv, qt5 }:
2
3stdenv.mkDerivation rec {
4
5 version = "0.5";
6 name = "openbr-${version}";
7
8 src = fetchgit {
9 url = "https://github.com/biometrics/openbr.git";
10 rev = "cc364a89a86698cd8d3052f42a3cb520c929b325";
11 sha256 = "16b3mmsf9r1yqqaw89fx0c3bgfg86dz4phry89wqy2hw05szgda3";
12 };
13
14 buildInputs = [ opencv qt5.base qt5.svg ];
15
16 nativeBuildInputs = [ cmake ];
17
18 enableParallelBuilding = true;
19
20 cmakeFlags = [
21 "-DCMAKE_BUILD_TYPE=Release"
22 ];
23
24 meta = {
25 description = "Open Source Biometric Recognition";
26 homepage = http://openbiometrics.org/;
27 license = stdenv.lib.licenses.asl20;
28 maintainers = with stdenv.lib.maintainers; [flosse];
29 platforms = with stdenv.lib.platforms; linux;
30 };
31}