1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/libraries/openbr/default.nix

30 lines
732 B
Nix
Raw Normal View History

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