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

30 lines
718 B
Nix
Raw Normal View History

2015-12-28 14:14:28 -08:00
{ stdenv, fetchFromGitHub, cmake, opencv, qtbase, qtsvg }:
2015-01-15 07:57:04 -08:00
2019-08-13 14:52:01 -07:00
stdenv.mkDerivation {
2015-01-15 07:57:04 -08:00
version = "0.5";
pname = "openbr";
2015-01-15 07:57:04 -08:00
2015-12-28 14:14:28 -08:00
src = fetchFromGitHub {
owner = "biometrics";
repo = "openbr";
2015-01-15 07:57:04 -08:00
rev = "cc364a89a86698cd8d3052f42a3cb520c929b325";
2015-12-28 14:14:28 -08:00
sha256 = "12y00cf5dlzp9ciiwbihf6xhlkdxpydhscv5hwp83qjdllid9rrz";
2015-01-15 07:57:04 -08:00
};
2015-09-27 08:24:16 -07:00
buildInputs = [ opencv qtbase qtsvg ];
2015-01-15 07:57:04 -08: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 13:48:27 -07:00
broken = true;
2015-01-15 07:57:04 -08:00
};
}