2022-11-26T21:49:37 notepad-next 0.5.5 -> 0.5.6 https://github.com/dail8859/NotepadNext/releases 2022-11-26T21:49:40 attrpath: notepad-next 2022-11-26T21:49:40 Checking auto update branch... 2022-11-26T21:49:40 No auto update branch exists 2022-11-26T21:49:41 Old version 0.5.5" not present in master derivation file with contents: { mkDerivation, lib, fetchFromGitHub, qmake, qttools, qtx11extras, stdenv }: mkDerivation rec { pname = "notepad-next"; version = "0.5.6"; src = fetchFromGitHub { owner = "dail8859"; repo = "NotepadNext"; rev = "v${version}"; sha256 = "sha256-0ZmyEtyVpqQ05FOYdFbnFqfPJKNkrweflSl+irOzcuk="; # External dependencies - https://github.com/dail8859/NotepadNext/issues/135 fetchSubmodules = true; }; nativeBuildInputs = [ qmake qttools ]; buildInputs = [ qtx11extras ]; qmakeFlags = [ "PREFIX=${placeholder "out"}" "src/NotepadNext.pro" ]; postPatch = '' substituteInPlace src/i18n.pri \ --replace 'EXTRA_TRANSLATIONS = \' "" \ --replace '$$[QT_INSTALL_TRANSLATIONS]/qt_zh_CN.qm' "" ''; meta = with lib; { homepage = "https://github.com/dail8859/NotepadNext"; description = "Notepad++-like editor for the Linux desktop"; license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = [ maintainers.sebtm ]; broken = stdenv.isAarch64; }; }