nixpkgs/pkgs/tools/inputmethods/zinnia/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

24 lines
650 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "zinnia-${version}";
version = "2015-03-15";
src = fetchFromGitHub {
owner = "taku910";
repo = "zinnia";
rev = "d8de1180d5175d7579e6c41b000f1ab4dd9cd697";
sha256 = "ac09a16c04c5ef9b46626984e627250dc717d85711d14f1bbfa7f1ca0ca713dc";
};
setSourceRoot = "export sourceRoot=$(echo zinnia-*/zinnia/)";
meta = with stdenv.lib; {
description = "Online hand recognition system with machine learning";
homepage = http://taku910.github.io/zinnia/;
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = [ maintainers.gebner ];
};
}