Unverified Commit adec8be4 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

ktailctl: 0.17.2 -> 0.18.0 (#344934)

parents 76441cbe 10585c08
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
{ 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
  ];