summary refs log blame commit diff
path: root/pkgs/tools/inputmethods/zinnia/default.nix
blob: 8070dbc66ba8973c97060b1ce7fb1bb399068236 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                 
 
                     
                   
                         



                         

                                                                    

    


                               
 
                    
                                                                         
                                                  




                                         
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation {
  pname = "zinnia";
  version = "2016-08-28";

  src = fetchFromGitHub {
    owner = "taku910";
    repo = "zinnia";
    rev = "fd74d8c8680bb3df8692279151ea6339ab68e32b";
    sha256 = "1izjy5qw6swg0rs2ym2i72zndb90mwrfbd1iv8xbpwckbm4899lg";
  };

  setSourceRoot = ''
    sourceRoot=$(echo */zinnia)
  '';

  meta = with lib; {
    description = "Online hand recognition system with machine learning";
    homepage = "http://taku910.github.io/zinnia/";
    license = licenses.bsd2;
    platforms = platforms.unix;
    maintainers = [ maintainers.gebner ];
  };
}