{ lib , mkDerivation , fetchFromGitHub , cmake , extra-cmake-modules , qtbase , qtscript , libXfixes , libXtst , qtx11extras , git , knotifications , qtwayland , wayland , fetchpatch }: mkDerivation rec { pname = "CopyQ"; version = "6.2.0"; src = fetchFromGitHub { owner = "hluk"; repo = "CopyQ"; rev = "v${version}"; hash = "sha256-0XCqSF1oc2B3FD5OmOxqgt9sqCIrzK0KjkntVFXlRWI="; }; nativeBuildInputs = [ cmake extra-cmake-modules ]; buildInputs = [ qtbase qtscript libXfixes libXtst qtx11extras knotifications qtwayland wayland ]; postPatch = '' substituteInPlace shared/com.github.hluk.copyq.desktop.in \ --replace copyq "$out/bin/copyq" ''; 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. # OSX build requires QT5. platforms = platforms.linux; }; }