qownnotes 24.2.0 -> 24.2.3 https://repology.org/project/qownnotes/versions attrpath: qownnotes Checking auto update branch... No auto update branch exists Old version 24.2.0" not present in master derivation file with contents: { lib , stdenv , fetchurl , qmake , qttools , qtbase , qtdeclarative , qtsvg , qtwayland , qtwebsockets , qt5compat , makeWrapper , wrapQtAppsHook , botan2 , pkg-config , nixosTests }: let pname = "qownnotes"; appname = "QOwnNotes"; version = "24.2.3"; in stdenv.mkDerivation { inherit pname version; src = fetchurl { url = "https://github.com/pbek/QOwnNotes/releases/download/v${version}/qownnotes-${version}.tar.xz"; hash = "sha256-US+RyjKpzIPpqvc19nInUW5/x/osLbc6xk4yKEdQYic="; }; nativeBuildInputs = [ qmake qttools wrapQtAppsHook pkg-config ] ++ lib.optionals stdenv.isDarwin [ makeWrapper ]; buildInputs = [ qtbase qtdeclarative qtsvg qtwebsockets qt5compat botan2 ] ++ lib.optionals stdenv.isLinux [ qtwayland ]; qmakeFlags = [ "USE_SYSTEM_BOTAN=1" ]; postInstall = # Create a lowercase symlink for Linux lib.optionalString stdenv.isLinux '' ln -s $out/bin/${appname} $out/bin/${pname} '' # Wrap application for macOS as lowercase binary + lib.optionalString stdenv.isDarwin '' mkdir -p $out/Applications mv $out/bin/${appname}.app $out/Applications 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/"; changelog = "https://www.qownnotes.org/changelog.html"; downloadPage = "https://github.com/pbek/QOwnNotes/releases/tag/v${version}"; license = licenses.gpl2Only; maintainers = with maintainers; [ pbek totoroot ]; platforms = platforms.unix; }; }