nixpkgs/pkgs/development/libraries/openbr/default.nix

30 lines
732 B
Nix
Raw Normal View History

2015-12-29 01:14:28 +03:00
{ stdenv, fetchFromGitHub, cmake, opencv, qtbase, qtsvg }:
2015-01-15 18:57:04 +03:00
stdenv.mkDerivation rec {
version = "0.5";
name = "openbr-${version}";
2015-12-29 01:14:28 +03:00
src = fetchFromGitHub {
owner = "biometrics";
repo = "openbr";
2015-01-15 18:57:04 +03:00
rev = "cc364a89a86698cd8d3052f42a3cb520c929b325";
2015-12-29 01:14:28 +03:00
sha256 = "12y00cf5dlzp9ciiwbihf6xhlkdxpydhscv5hwp83qjdllid9rrz";
2015-01-15 18:57:04 +03:00
};
2015-09-27 18:24:16 +03:00
buildInputs = [ opencv qtbase qtsvg ];
2015-01-15 18:57:04 +03:00
nativeBuildInputs = [ cmake ];
enableParallelBuilding = true;
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;
2016-05-08 23:48:27 +03:00
broken = true;
2015-01-15 18:57:04 +03:00
};
}