summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/kiwix/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/kiwix/default.nix')
-rw-r--r--pkgs/applications/misc/kiwix/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/misc/kiwix/default.nix b/pkgs/applications/misc/kiwix/default.nix
index 7f13494f65f5..600ea299d18f 100644
--- a/pkgs/applications/misc/kiwix/default.nix
+++ b/pkgs/applications/misc/kiwix/default.nix
@@ -1,5 +1,5 @@
{ lib, mkDerivation, fetchFromGitHub
-, callPackage
+, libkiwix
, pkg-config
, qmake
, qtbase
@@ -11,13 +11,13 @@
mkDerivation rec {
pname = "kiwix";
- version = "2.2.1";
+ version = "2.3.1";
src = fetchFromGitHub {
owner = pname;
repo = "${pname}-desktop";
rev = version;
- sha256 = "sha256-ks2d/guMp5pb2tiwGxNp3htQVm65MsYvZ/6tNjGXNr8=";
+ sha256 = "sha256-ghx4pW6IkWPzZXk0TtMGeQZIzm9HEN3mR4XQFJ1xHDo=";
};
nativeBuildInputs = [
@@ -26,11 +26,11 @@ mkDerivation rec {
];
buildInputs = [
+ libkiwix
qtbase
qtwebengine
qtsvg
qtimageformats
- (callPackage ./lib.nix {})
];
qtWrapperArgs = [
@@ -40,7 +40,7 @@ mkDerivation rec {
meta = with lib; {
description = "An offline reader for Web content";
homepage = "https://kiwix.org";
- license = licenses.gpl3;
+ license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ ajs124 ];
};