nixpkgs/pkgs/tools/inputmethods/zinnia/default.nix

26 lines
619 B
Nix
Raw Normal View History

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