1 { stdenv, lib, fetchzip, qtbase, qttools, cmake, sqlite, wrapQtAppsHook }:
3 stdenv.mkDerivation rec {
4 pname = "tagainijisho";
8 url = "https://github.com/Gnurou/tagainijisho/releases/download/${version}/tagainijisho-${version}.tar.gz";
9 hash = "sha256-CTDMoYGbVE4W0SDerW//aAdUVsySWFQycSy0I3a9+94=";
12 nativeBuildInputs = [ qttools cmake wrapQtAppsHook ];
13 buildInputs = [ qtbase sqlite ];
20 description = "Free, open-source Japanese dictionary and kanji lookup tool";
21 mainProgram = "tagainijisho";
22 homepage = "https://www.tagaini.net/";
23 license = with licenses; [
29 platforms = platforms.linux;
30 maintainers = with maintainers; [ vbgl ];