ktailctl: 0.17.2 -> 0.18.0

This commit is contained in:
K900 2024-09-27 22:20:08 +03:00
parent 27e7407149
commit 10585c08c6

View File

@ -1,11 +1,11 @@
{ lib
, stdenv
, fetchFromGitHub
, buildGoModule
, buildGo123Module
, cmake
, extra-cmake-modules
, git
, go
, go_1_23
, wrapQtAppsHook
, qtbase
, qtdeclarative
@ -23,20 +23,20 @@
}:
let
version = "0.17.2";
version = "0.18.0";
src = fetchFromGitHub {
owner = "f-koehler";
repo = "KTailctl";
rev = "v${version}";
hash = "sha256-jACcTRIdzYiSLy7zw5QuDu9tZfee9ufhlEecbTbSr+4=";
hash = "sha256-tZnwn94qZyQ8JAC6Y1dDTmc7Cob+kMZnEaP7+EytbH8=";
};
goDeps = (buildGoModule {
goDeps = (buildGo123Module {
pname = "ktailctl-go-wrapper";
inherit src version;
modRoot = "src/wrapper";
vendorHash = "sha256-V4Bn5/VaoFOZlNGBedA4Ly8Kocw0BWyfIHv8IU6Eay4=";
vendorHash = "sha256-KdkvAPLnoC7DccRVIz7t/Ns71dnG59DpO5qwOhJk7qc=";
}).goModules;
in
stdenv.mkDerivation {
@ -61,7 +61,7 @@ stdenv.mkDerivation {
cmake
extra-cmake-modules
git
go
go_1_23
wrapQtAppsHook
];