biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / inputmethods / zinnia / default.nix
blob8070dbc66ba8973c97060b1ce7fb1bb399068236
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation {
4   pname = "zinnia";
5   version = "2016-08-28";
7   src = fetchFromGitHub {
8     owner = "taku910";
9     repo = "zinnia";
10     rev = "fd74d8c8680bb3df8692279151ea6339ab68e32b";
11     sha256 = "1izjy5qw6swg0rs2ym2i72zndb90mwrfbd1iv8xbpwckbm4899lg";
12   };
14   setSourceRoot = ''
15     sourceRoot=$(echo */zinnia)
16   '';
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   };