tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
copyq: add patch for qt 6.6 support
Nick Cao
2 years ago
03a0b602
48e85284
+10
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
copyq
default.nix
+10
pkgs/applications/misc/copyq/default.nix
···
1
{ lib
2
, stdenv
3
, fetchFromGitHub
0
4
, cmake
5
, ninja
6
, extra-cmake-modules
···
25
rev = "v${version}";
26
hash = "sha256-aAmpFKIIFZLPWUaOcf4V1d/wVQ7xRcnXFsqFjROsabg=";
27
};
0
0
0
0
0
0
0
0
0
28
29
nativeBuildInputs = [
30
cmake
···
1
{ lib
2
, stdenv
3
, fetchFromGitHub
4
+
, fetchpatch2
5
, cmake
6
, ninja
7
, extra-cmake-modules
···
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