copyq: 10.0.0 -> 11.0.0

https://github.com/hluk/CopyQ/releases/tag/v11.0.0
This commit is contained in:
daimond113
2025-09-18 23:51:30 +02:00
parent d7600c775f
commit 7f6f5b0c43
+2 -12
View File
@@ -2,7 +2,6 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
cmake,
ninja,
qtbase,
@@ -20,13 +19,13 @@
stdenv.mkDerivation (rec {
pname = "CopyQ";
version = "10.0.0";
version = "11.0.0";
src = fetchFromGitHub {
owner = "hluk";
repo = "CopyQ";
rev = "v${version}";
hash = "sha256-lH3WJ6cK2eCnmcLVLnYUypABj73UZjGqqDPp92QE+V4=";
hash = "sha256-/t+8YsqeX0tlxwQDDNTalttCDIgGhpLbzYe3UqY04xM=";
};
nativeBuildInputs = [
@@ -51,15 +50,6 @@ stdenv.mkDerivation (rec {
kdePackages.knotifications
];
patches = [
(fetchpatch {
# Can be removed after next release
name = "fix-qchar-construction-for-qt-6.9.patch";
url = "https://github.com/hluk/CopyQ/commit/f08c0d46a239362c5d3525ef9c3ba943bb00f734.patch";
hash = "sha256-dsDIUVJHFFqzZ3tFOcYdwol/tm4viHM0CRs6wYfVKbQ=";
})
];
cmakeFlags = [
(lib.cmakeBool "WITH_QT6" true)
];