ktunnel 1.5.3 -> 1.6.1 https://repology.org/project/ktunnel/versions attrpath: ktunnel Checking auto update branch... No auto update branch exists Old version 1.5.3" not present in master derivation file with contents: { stdenv, lib, buildGoModule, fetchFromGitHub }: let version = "1.6.1"; in buildGoModule { pname = "ktunnel"; inherit version; src = fetchFromGitHub { owner = "omrikiei"; repo = "ktunnel"; rev = "v${version}"; sha256 = "sha256-rcUCIUIyBCSuMly7y0GUNQCdJUgsj7Oi6Hpz23uXoJw="; }; ldflags = [ "-s" "-w" ]; vendorHash = "sha256-Q8t/NWGeUB1IpxdsxvyvbYh/adtcA4p+7bcCy9YFjsw="; preCheck = "export HOME=$(mktemp -d)"; # # TODO investigate why some tests are failing doCheck = false; installCheckPhase = '' runHook preInstallCheck "$out/bin/ktunnel" --version runHook postInstallCheck ''; meta = with lib; { description = "A cli that exposes your local resources to kubernetes "; homepage = "https://github.com/omrikiei/ktunnel"; license = licenses.asl20; maintainers = with maintainers; [ happysalada ]; }; }