summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorMatthias Thym <git@thym.at>2021-03-19 22:50:59 +0100
committerMatthias Thym <git@thym.at>2021-03-31 09:43:16 +0200
commitcb2df0773c4afb7f772ca62530eadfdf901242db (patch)
tree34c399f9c2d473552507e43952395ab767173b94 /pkgs/applications/office
parenta839c811a555396113d9d74d510a376284e4269d (diff)
downloadnixpkgs-cb2df0773c4afb7f772ca62530eadfdf901242db.tar
nixpkgs-cb2df0773c4afb7f772ca62530eadfdf901242db.tar.gz
nixpkgs-cb2df0773c4afb7f772ca62530eadfdf901242db.tar.bz2
nixpkgs-cb2df0773c4afb7f772ca62530eadfdf901242db.tar.lz
nixpkgs-cb2df0773c4afb7f772ca62530eadfdf901242db.tar.xz
nixpkgs-cb2df0773c4afb7f772ca62530eadfdf901242db.tar.zst
nixpkgs-cb2df0773c4afb7f772ca62530eadfdf901242db.zip
qownnotes: 20.2.5 -> 21.3.2
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/qownnotes/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/applications/office/qownnotes/default.nix b/pkgs/applications/office/qownnotes/default.nix
index 99b021429a6..e397743b22d 100644
--- a/pkgs/applications/office/qownnotes/default.nix
+++ b/pkgs/applications/office/qownnotes/default.nix
@@ -1,19 +1,19 @@
-{  mkDerivation, lib, fetchurl, qmake, qttools, qtbase, qtsvg, qtdeclarative, qtxmlpatterns, qtwayland, qtwebsockets, stdenv /* for isLinux */ }:
+{ mkDerivation, lib, fetchurl, qmake, qttools, qtbase, qtsvg, qtdeclarative, qtxmlpatterns, qtwayland, qtwebsockets, stdenv, qtx11extras }:
 
 mkDerivation rec {
   pname = "qownnotes";
-  version = "20.2.5";
+  version = "21.3.2";
 
   src = fetchurl {
     url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz";
     # Can grab official version like so:
-    # $ curl https://download.tuxfamily.org/qownnotes/src/qownnotes-20.2.5.tar.xz.sha256
-    sha256 = "c26d2a86a521cd243ec0a4788e7627e91cb5877dace73d93dd7d35dd02e9e4c5";
+    # $ curl https://download.tuxfamily.org/qownnotes/src/qownnotes-21.3.2.tar.xz.sha256
+    sha256 = "a8e8ab2ca1ef6684407adeb8fc63abcafff407a367471e053c583a1c4215e5ee";
   };
 
   nativeBuildInputs = [ qmake qttools ];
   buildInputs = [
-    qtbase qtsvg qtdeclarative qtxmlpatterns qtwebsockets
+    qtbase qtsvg qtdeclarative qtxmlpatterns qtwebsockets qtx11extras
   ] ++ lib.optional stdenv.isLinux qtwayland;
 
   meta = with lib; {
@@ -21,7 +21,7 @@ mkDerivation rec {
 
     homepage = "https://www.qownnotes.org/";
     platforms = platforms.all;
-    license = licenses.gpl2;
-    maintainers = with maintainers; [ dtzWill ];
+    license = licenses.gpl2Only;
+    maintainers = with maintainers; [ dtzWill totoroot ];
   };
 }