tagainijisho: new derivation
Tagaini Jisho is a free, open-source Japanese dictionary and kanji lookup tool that aims at becoming your Japanese study assistant. Homepage: http://www.tagaini.net/ Closes #4509
This commit is contained in:
parent
323509e11c
commit
a50da1bfc8
22
pkgs/applications/office/tagainijisho/default.nix
Normal file
22
pkgs/applications/office/tagainijisho/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{stdenv, fetchurl, qt4, cmake, sqlite}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "tagainijisho-1.0.2";
|
||||
src = fetchurl {
|
||||
url = https://github.com/Gnurou/tagainijisho/releases/download/1.0.2/tagainijisho-1.0.2.tar.gz;
|
||||
sha256 = "0gvwsphy2a1b2npxkzvaf91rbzb00zhi2anxd5102h6ld5m52jhl";
|
||||
};
|
||||
|
||||
buildInputs = [ qt4 cmake sqlite ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A free, open-source Japanese dictionary and kanji lookup tool";
|
||||
homepage = http://www.tagaini.net/;
|
||||
license = with licenses; [
|
||||
/* program */ gpl3Plus
|
||||
/* data */ cc-by-sa-30
|
||||
];
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ vbgl ];
|
||||
};
|
||||
}
|
@ -10352,6 +10352,8 @@ let
|
||||
|
||||
tabbed = callPackage ../applications/window-managers/tabbed { };
|
||||
|
||||
tagainijisho = callPackage ../applications/office/tagainijisho {};
|
||||
|
||||
tahoelafs = callPackage ../tools/networking/p2p/tahoe-lafs {
|
||||
inherit (pythonPackages) twisted foolscap simplejson nevow zfec
|
||||
pycryptopp sqlite3 darcsver setuptoolsTrial setuptoolsDarcs
|
||||
|
Loading…
Reference in New Issue
Block a user