summary refs log tree commit diff
path: root/pkgs/applications/office/qownnotes
diff options
context:
space:
mode:
authorMatthias Thym <git@thym.at>2023-04-20 19:14:20 +0200
committerMatthias Thym <git@thym.at>2023-05-03 23:22:36 +0200
commit57de621aaef7fe6118cca9dcc15ac8a595dc3db8 (patch)
treec1dad74ae9906fb038172dcf563a27762bc671c8 /pkgs/applications/office/qownnotes
parent6cc0a7aedfa6e3f8c185a4e935174ad2f065b592 (diff)
qownnotes: build with Qt6
Diffstat (limited to 'pkgs/applications/office/qownnotes')
-rw-r--r--pkgs/applications/office/qownnotes/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/applications/office/qownnotes/default.nix b/pkgs/applications/office/qownnotes/default.nix
index aa827bdf910db..f0d634b91418b 100644
--- a/pkgs/applications/office/qownnotes/default.nix
+++ b/pkgs/applications/office/qownnotes/default.nix
@@ -8,8 +8,7 @@
 , qtsvg
 , qtwayland
 , qtwebsockets
-, qtx11extras
-, qtxmlpatterns
+, qt5compat
 , makeWrapper
 , wrapQtAppsHook
 }:
@@ -24,7 +23,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz";
-    sha256 = "sha256-W1bu3isEe1j7XTj+deLNk6Ncssy2UKG+eF36fe1FFWs=";
+    hash = "sha256-W1bu3isEe1j7XTj+deLNk6Ncssy2UKG+eF36fe1FFWs=";
   };
 
   nativeBuildInputs = [
@@ -38,8 +37,7 @@ stdenv.mkDerivation {
     qtdeclarative
     qtsvg
     qtwebsockets
-    qtx11extras
-    qtxmlpatterns
+    qt5compat
   ] ++ lib.optionals stdenv.isLinux [ qtwayland ];
 
   postInstall =