tagainijisho: 1.0.3 -> 1.2.0
qt4 -> qt5
This commit is contained in:
parent
3248f32201
commit
e332ad7a33
2 changed files with 11 additions and 8 deletions
|
@ -1,16 +1,19 @@
|
|||
{ lib, stdenv, fetchurl, qt4, cmake, sqlite }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
{ lib, mkDerivation, fetchzip, qtbase, qttools, cmake, sqlite }:
|
||||
mkDerivation rec {
|
||||
pname = "tagainijisho";
|
||||
version = "1.0.3";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchurl {
|
||||
src = fetchzip {
|
||||
url = "https://github.com/Gnurou/tagainijisho/releases/download/${version}/tagainijisho-${version}.tar.gz";
|
||||
sha256 = "0kmg1940yiqfm4vpifyj680283ids4nsij9s750nrshwxiwwbqvg";
|
||||
hash = "sha256-fLq4Wfpa7Wr62KvHztgLiXE8eopCq+wipgabFm2bq6w=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ qt4 sqlite ];
|
||||
buildInputs = [ qtbase qttools sqlite ];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DEMBED_SQLITE=OFF"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A free, open-source Japanese dictionary and kanji lookup tool";
|
||||
|
|
|
@ -30286,7 +30286,7 @@ with pkgs;
|
|||
inherit (haskell.packages.ghc8107) ghcWithPackages taffybar;
|
||||
};
|
||||
|
||||
tagainijisho = callPackage ../applications/office/tagainijisho {};
|
||||
tagainijisho = libsForQt5.callPackage ../applications/office/tagainijisho {};
|
||||
|
||||
tahoe-lafs = callPackage ../tools/networking/p2p/tahoe-lafs {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue