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

28 lines
670 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, opencv, qtbase, qtsvg }:
2015-01-15 16:57:04 +01:00
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
2015-01-15 16:57:04 +01:00
version = "0.5";
pname = "openbr";
2015-01-15 16:57:04 +01:00
2015-12-28 23:14:28 +01:00
src = fetchFromGitHub {
owner = "biometrics";
repo = "openbr";
2015-01-15 16:57:04 +01:00
rev = "cc364a89a86698cd8d3052f42a3cb520c929b325";
2015-12-28 23:14:28 +01:00
sha256 = "12y00cf5dlzp9ciiwbihf6xhlkdxpydhscv5hwp83qjdllid9rrz";
2015-01-15 16:57:04 +01:00
};
2015-09-27 17:24:16 +02:00
buildInputs = [ opencv qtbase qtsvg ];
2015-01-15 16:57:04 +01:00
nativeBuildInputs = [ cmake ];
meta = {
description = "Open Source Biometric Recognition";
homepage = "http://openbiometrics.org/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [flosse];
platforms = with lib.platforms; linux;
2016-05-08 22:48:27 +02:00
broken = true;
2015-01-15 16:57:04 +01:00
};
}