Merge pull request #296823 from wineee/copyq

copyq: 7.1.0 -> 8.0.0

authored by

Artturi and committed by
GitHub
847fde41 33ce57dd

+7 -13
+7 -13
pkgs/applications/misc/copyq/default.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 - , fetchpatch2 5 , cmake 6 , ninja 7 , extra-cmake-modules ··· 14 , qtwayland 15 , wayland 16 , wrapQtAppsHook 17 }: 18 19 stdenv.mkDerivation rec { 20 pname = "CopyQ"; 21 - version = "7.1.0"; 22 23 src = fetchFromGitHub { 24 owner = "hluk"; 25 repo = "CopyQ"; 26 rev = "v${version}"; 27 - hash = "sha256-aAmpFKIIFZLPWUaOcf4V1d/wVQ7xRcnXFsqFjROsabg="; 28 }; 29 30 - patches = [ 31 - # itemfakevim: fix build with qt 6.6.0 32 - # https://github.com/hluk/CopyQ/pull/2508 33 - (fetchpatch2 { 34 - url = "https://github.com/hluk/CopyQ/commit/a20bfff0d78296b334ff8cabb047ab5d842b7311.patch"; 35 - hash = "sha256-F/6cQ8+O1Ttd4EFFxQas5ES6U+qxWdmYqUWRQLsVMa4="; 36 - }) 37 - ]; 38 - 39 nativeBuildInputs = [ 40 cmake 41 ninja 42 - extra-cmake-modules 43 wrapQtAppsHook 44 ]; 45 ··· 52 libXtst 53 qtwayland 54 wayland 55 ]; 56 57 postPatch = ''
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , cmake 5 , ninja 6 , extra-cmake-modules ··· 13 , qtwayland 14 , wayland 15 , wrapQtAppsHook 16 + , kdePackages 17 }: 18 19 stdenv.mkDerivation rec { 20 pname = "CopyQ"; 21 + version = "8.0.0"; 22 23 src = fetchFromGitHub { 24 owner = "hluk"; 25 repo = "CopyQ"; 26 rev = "v${version}"; 27 + hash = "sha256-Ewunl4k9f0aDjilhKAsVxwR3S6uSZ1xwtu6ccNsNOgk="; 28 }; 29 30 nativeBuildInputs = [ 31 cmake 32 ninja 33 + kdePackages.extra-cmake-modules 34 wrapQtAppsHook 35 ]; 36 ··· 43 libXtst 44 qtwayland 45 wayland 46 + kdePackages.kconfig 47 + kdePackages.kstatusnotifieritem 48 + kdePackages.knotifications 49 ]; 50 51 postPatch = ''