lol

ktailctl: 0.18.2 -> 0.19.0 (#374128)

authored by

K900 and committed by
GitHub
62e9d4ae ae06b9c2

+19 -15
+19 -15
pkgs/applications/networking/ktailctl/default.nix
··· 1 1 { 2 - lib, 3 - stdenv, 4 - fetchFromGitHub, 5 2 buildGo123Module, 6 3 cmake, 7 4 extra-cmake-modules, 5 + fetchFromGitHub, 8 6 git, 9 7 go_1_23, 10 - wrapQtAppsHook, 11 - qtbase, 12 - qtdeclarative, 13 - qtsvg, 14 - qtwayland, 15 8 kconfig, 16 9 kcoreaddons, 10 + kdbusaddons, 17 11 kguiaddons, 18 12 ki18n, 19 13 kirigami, 20 14 kirigami-addons, 21 15 knotifications, 16 + kwindowsystem, 17 + lib, 22 18 nlohmann_json, 23 19 qqc2-desktop-style, 20 + qtbase, 21 + qtdeclarative, 22 + qtsvg, 23 + qtwayland, 24 + stdenv, 25 + wrapQtAppsHook, 24 26 }: 25 27 26 28 let 27 - version = "0.18.2"; 29 + version = "0.19.0"; 28 30 29 31 src = fetchFromGitHub { 30 32 owner = "f-koehler"; 31 33 repo = "KTailctl"; 32 34 rev = "v${version}"; 33 - hash = "sha256-nxYgpIUNgWhWnrd5rqSH2r1QKhWPJwxlIQl6F9PmjpU="; 35 + hash = "sha256-tKdzTfqKCSRf/cPw3AcvpuZ3ETQYSKm98r5Py14aC9w="; 34 36 }; 35 37 36 38 goDeps = ··· 38 40 pname = "ktailctl-go-wrapper"; 39 41 inherit src version; 40 42 modRoot = "src/wrapper"; 41 - vendorHash = "sha256-UjgHfR+MJ8ROqOPIM0ZkqgFGVEkw8gKYlVQ6oxoIcgE="; 43 + vendorHash = "sha256-xe2LUdh/F3ATRi2+5UbfLGAMgDnYj/J1ZIaB1lMPIkk="; 42 44 }).goModules; 43 45 in 44 46 stdenv.mkDerivation { ··· 68 70 ]; 69 71 70 72 buildInputs = [ 71 - qtbase 72 - qtdeclarative 73 - qtsvg 74 - qtwayland 75 73 kconfig 76 74 kcoreaddons 75 + kdbusaddons 77 76 kguiaddons 78 77 ki18n 79 78 kirigami 80 79 kirigami-addons 81 80 knotifications 81 + kwindowsystem 82 82 nlohmann_json 83 83 qqc2-desktop-style 84 + qtbase 85 + qtdeclarative 86 + qtsvg 87 + qtwayland 84 88 ]; 85 89 86 90 meta = with lib; {