Skip to content

Commit 62e9d4a

Browse files
authored
ktailctl: 0.18.2 -> 0.19.0 (#374128)
2 parents ae06b9c + 3d891ad commit 62e9d4a

File tree

1 file changed

+19
-15
lines changed

1 file changed

+19
-15
lines changed

pkgs/applications/networking/ktailctl/default.nix

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,46 @@
11
{
2-
lib,
3-
stdenv,
4-
fetchFromGitHub,
52
buildGo123Module,
63
cmake,
74
extra-cmake-modules,
5+
fetchFromGitHub,
86
git,
97
go_1_23,
10-
wrapQtAppsHook,
11-
qtbase,
12-
qtdeclarative,
13-
qtsvg,
14-
qtwayland,
158
kconfig,
169
kcoreaddons,
10+
kdbusaddons,
1711
kguiaddons,
1812
ki18n,
1913
kirigami,
2014
kirigami-addons,
2115
knotifications,
16+
kwindowsystem,
17+
lib,
2218
nlohmann_json,
2319
qqc2-desktop-style,
20+
qtbase,
21+
qtdeclarative,
22+
qtsvg,
23+
qtwayland,
24+
stdenv,
25+
wrapQtAppsHook,
2426
}:
2527

2628
let
27-
version = "0.18.2";
29+
version = "0.19.0";
2830

2931
src = fetchFromGitHub {
3032
owner = "f-koehler";
3133
repo = "KTailctl";
3234
rev = "v${version}";
33-
hash = "sha256-nxYgpIUNgWhWnrd5rqSH2r1QKhWPJwxlIQl6F9PmjpU=";
35+
hash = "sha256-tKdzTfqKCSRf/cPw3AcvpuZ3ETQYSKm98r5Py14aC9w=";
3436
};
3537

3638
goDeps =
3739
(buildGo123Module {
3840
pname = "ktailctl-go-wrapper";
3941
inherit src version;
4042
modRoot = "src/wrapper";
41-
vendorHash = "sha256-UjgHfR+MJ8ROqOPIM0ZkqgFGVEkw8gKYlVQ6oxoIcgE=";
43+
vendorHash = "sha256-xe2LUdh/F3ATRi2+5UbfLGAMgDnYj/J1ZIaB1lMPIkk=";
4244
}).goModules;
4345
in
4446
stdenv.mkDerivation {
@@ -68,19 +70,21 @@ stdenv.mkDerivation {
6870
];
6971

7072
buildInputs = [
71-
qtbase
72-
qtdeclarative
73-
qtsvg
74-
qtwayland
7573
kconfig
7674
kcoreaddons
75+
kdbusaddons
7776
kguiaddons
7877
ki18n
7978
kirigami
8079
kirigami-addons
8180
knotifications
81+
kwindowsystem
8282
nlohmann_json
8383
qqc2-desktop-style
84+
qtbase
85+
qtdeclarative
86+
qtsvg
87+
qtwayland
8488
];
8589

8690
meta = with lib; {

0 commit comments

Comments
 (0)