copyq 6.4.0 -> 7.0.0 https://github.com/hluk/CopyQ/releases attrpath: copyq Checking auto update branch... No auto update branch exists Old version 6.4.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , ninja , extra-cmake-modules , qtbase , qtsvg , qttools , qtdeclarative , libXfixes , libXtst , qtwayland , wayland , wrapQtAppsHook }: stdenv.mkDerivation rec { pname = "CopyQ"; version = "7.0.0"; src = fetchFromGitHub { owner = "hluk"; repo = "CopyQ"; rev = "v${version}"; hash = "sha256-Wk1kTbL6LYgs1edazU39LlNZMAAm6wDbEPjuXvb5EkE="; }; nativeBuildInputs = [ cmake ninja extra-cmake-modules wrapQtAppsHook ]; buildInputs = [ qtbase qtsvg qttools qtdeclarative libXfixes libXtst qtwayland wayland ]; postPatch = '' substituteInPlace shared/com.github.hluk.copyq.desktop.in \ --replace copyq "$out/bin/copyq" ''; cmakeFlags = [ "-DWITH_QT6=ON" ]; meta = with lib; { homepage = "https://hluk.github.io/CopyQ"; description = "Clipboard Manager with Advanced Features"; license = licenses.gpl3Only; maintainers = with maintainers; [ artturin ]; # NOTE: CopyQ supports windows and osx, but I cannot test these. platforms = platforms.linux; mainProgram = "copyq"; }; }