ktailctl: 0.17.2 -> 0.18.0 (#344934)

This commit is contained in:
Sandro
2024-09-27 23:44:52 +02:00
committed by GitHub

View File

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