From 131c14aaf2f481b62fc8ca695b9b707f30c96147 Mon Sep 17 00:00:00 2001 From: Patrizio Bekerle Date: Fri, 16 Jun 2023 19:09:52 +0200 Subject: [PATCH] qownnotes: 23.6.4 -> 23.6.5 --- pkgs/applications/office/qownnotes/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/office/qownnotes/default.nix b/pkgs/applications/office/qownnotes/default.nix index f3ce1d58e6c5..4ca0f4bdecd9 100644 --- a/pkgs/applications/office/qownnotes/default.nix +++ b/pkgs/applications/office/qownnotes/default.nix @@ -13,19 +13,20 @@ , wrapQtAppsHook , botan2 , pkg-config +, nixosTests }: let pname = "qownnotes"; appname = "QOwnNotes"; - version = "23.6.4"; + version = "23.6.5"; in stdenv.mkDerivation { inherit pname appname version; src = fetchurl { url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; - hash = "sha256-4uH76/zLgNcuX6nI6YtTxGB9cYj3jHla/B3w9w6CUx4="; + hash = "sha256-FTGptp6RWVJYdLXtDI5cymt1bNr+0yHk0wLCOuTbxlE="; }; nativeBuildInputs = [ @@ -60,6 +61,9 @@ stdenv.mkDerivation { makeWrapper $out/Applications/${appname}.app/Contents/MacOS/${appname} $out/bin/${pname} ''; + # Tests QOwnNotes using the NixOS module by launching xterm: + passthru.tests.basic-nixos-module-functionality = nixosTests.qownnotes; + meta = with lib; { description = "Plain-text file notepad and todo-list manager with markdown support and Nextcloud/ownCloud integration"; homepage = "https://www.qownnotes.org/";