2015-03-31 08:34:48 +01:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "zinnia";
|
2017-08-24 07:21:15 +01:00
|
|
|
version = "2016-08-28";
|
2015-03-31 08:34:48 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "taku910";
|
|
|
|
repo = "zinnia";
|
2017-08-24 07:21:15 +01:00
|
|
|
rev = "fd74d8c8680bb3df8692279151ea6339ab68e32b";
|
|
|
|
sha256 = "1izjy5qw6swg0rs2ym2i72zndb90mwrfbd1iv8xbpwckbm4899lg";
|
2015-03-31 08:34:48 +01:00
|
|
|
};
|
|
|
|
|
2017-11-02 12:54:20 +00:00
|
|
|
setSourceRoot = ''
|
|
|
|
sourceRoot=$(echo */zinnia)
|
|
|
|
'';
|
2015-03-31 08:34:48 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Online hand recognition system with machine learning";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://taku910.github.io/zinnia/;
|
2015-03-31 08:34:48 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.gebner ];
|
|
|
|
};
|
|
|
|
}
|