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