mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Revert "tagainijisho: new derivation"
This reverts commit d62b63d319
.
Fails to download dependencies. See http://hydra.nixos.org/build/15845724
This commit is contained in:
parent
1a7c1615bf
commit
bbf3a18746
2 changed files with 0 additions and 46 deletions
|
@ -1,44 +0,0 @@
|
|||
{stdenv, fetchurl, qt4, cmake, sqlite}:
|
||||
|
||||
let
|
||||
jmdict = fetchurl {
|
||||
url = ftp://ftp.monash.edu.au/pub/nihongo/JMdict.gz;
|
||||
sha256 = "0ml25hlbi0zifx0i03lkmnkar0dr94401j95j493401c71d4kjlf";
|
||||
};
|
||||
kanjidic2 = fetchurl {
|
||||
url = http://www.csse.monash.edu.au/~jwb/kanjidic2/kanjidic2.xml.gz;
|
||||
sha256 = "0v7x10isn0vsrya987dh6l54czgprp2nd7kbxblnnf3g6n31qbgv";
|
||||
};
|
||||
kanjivg = fetchurl {
|
||||
url = https://github.com/KanjiVG/kanjivg/releases/download/r20140816/kanjivg-20140816.xml.gz;
|
||||
sha256 = "0wp43xlpfq3p983047mz0j250xpb4wzqxgp8c6ldqjg7s6bzd4h9";
|
||||
};
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "tagainijisho-1.0.2";
|
||||
src = fetchurl {
|
||||
url = https://github.com/Gnurou/tagainijisho/archive/1.0.2.tar.gz;
|
||||
sha256 = "1h8rf1zph8mpq0mfwil9dnjfwg49xd0bysllcddmkshs5xxv96ca";
|
||||
};
|
||||
|
||||
buildInputs = [ qt4 cmake sqlite ];
|
||||
|
||||
preConfigure = ''
|
||||
mkdir 3rdparty
|
||||
zcat ${jmdict} > 3rdparty/JMdict
|
||||
zcat ${kanjidic2} > 3rdparty/kanjidic2.xml
|
||||
zcat ${kanjivg} > 3rdparty/kanjivg.xml
|
||||
'';
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -10354,8 +10354,6 @@ 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 a new issue