python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / office / tagainijisho / default.nix
blob0c913cd7df20bf68e40678f0e977b6f88cccaec4
1 { lib, mkDerivation, fetchzip, qtbase, qttools, cmake, sqlite }:
2 mkDerivation rec {
3   pname = "tagainijisho";
4   version = "1.2.1";
6   src = fetchzip {
7     url = "https://github.com/Gnurou/tagainijisho/releases/download/${version}/tagainijisho-${version}.tar.gz";
8     hash = "sha256-NYmvkjGl+lgFh4PPWGxitupYJ2DOyCBAYlITGb3FMj8=";
9   };
11   nativeBuildInputs = [ cmake ];
12   buildInputs = [ qtbase qttools sqlite ];
14   cmakeFlags = [
15     "-DEMBED_SQLITE=OFF"
16   ];
18   meta = with lib; {
19     description = "A free, open-source Japanese dictionary and kanji lookup tool";
20     homepage = "https://www.tagaini.net/";
21     license = with licenses; [
22       /* program */
23       gpl3Plus
24       /* data */
25       cc-by-sa-30
26     ];
27     platforms = platforms.linux;
28     maintainers = with maintainers; [ vbgl ];
29   };