lol
1{ lib, stdenv, fetchFromGitHub }:
2
3stdenv.mkDerivation {
4 pname = "zinnia";
5 version = "2016-08-28";
6
7 src = fetchFromGitHub {
8 owner = "taku910";
9 repo = "zinnia";
10 rev = "fd74d8c8680bb3df8692279151ea6339ab68e32b";
11 sha256 = "1izjy5qw6swg0rs2ym2i72zndb90mwrfbd1iv8xbpwckbm4899lg";
12 };
13
14 setSourceRoot = ''
15 sourceRoot=$(echo */zinnia)
16 '';
17
18 meta = with lib; {
19 description = "Online hand recognition system with machine learning";
20 homepage = "http://taku910.github.io/zinnia/";
21 license = licenses.bsd2;
22 platforms = platforms.unix;
23 maintainers = [ maintainers.gebner ];
24 };
25}