zarf: 0.54.0 -> 0.55.6 (#413577)

authored by Matthias Beyer and committed by GitHub e895792b 09dcf6b2

+14 -11
+14 -11
pkgs/by-name/za/zarf/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "zarf"; 11 - version = "0.54.0"; 11 + version = "0.55.6"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "zarf-dev"; 15 15 repo = "zarf"; 16 - rev = "v${version}"; 17 - hash = "sha256-rY9xWqJ+2Yfs6VRHTF89LmuEruAavDI7MgBm4UFEuBs="; 16 + tag = "v${version}"; 17 + hash = "sha256-UoTbw5QW9HpGDWHOC0Wv/4FaTKWEztHRp/XAOatqqjs="; 18 18 }; 19 19 20 - vendorHash = "sha256-Cz+w0tOEamCxf61hvQ03X/kXPY+qrmdBN8s26lr/wZ8="; 20 + vendorHash = "sha256-AJd/QVL+ZoLORqeYrC/WkRtggYd3nhg8AEZ9Gb1j2tQ="; 21 21 proxyVendor = true; 22 22 23 23 nativeBuildInputs = [ installShellFiles ]; ··· 25 25 preBuild = '' 26 26 mkdir -p build/ui 27 27 touch build/ui/index.html 28 + rm -rf hack/schema 28 29 ''; 29 30 30 31 doCheck = false; ··· 33 34 "-s" 34 35 "-w" 35 36 "-X" 36 - "github.com/zarf-dev/zarf/src/config.CLIVersion=${src.rev}" 37 + "github.com/zarf-dev/zarf/src/config.CLIVersion=${src.tag}" 37 38 "-X" 38 - "k8s.io/component-base/version.gitVersion=v0.0.0+zarf${src.rev}" 39 + "k8s.io/component-base/version.gitVersion=v0.0.0+zarf${src.tag}" 39 40 "-X" 40 - "k8s.io/component-base/version.gitCommit=${src.rev}" 41 + "k8s.io/component-base/version.gitCommit=${src.tag}" 41 42 "-X" 42 43 "k8s.io/component-base/version.buildDate=1970-01-01T00:00:00Z" 43 44 ]; ··· 45 46 postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 46 47 export K9S_LOGS_DIR=$(mktemp -d) 47 48 installShellCompletion --cmd zarf \ 48 - --bash <($out/bin/zarf completion --no-log-file bash) \ 49 - --fish <($out/bin/zarf completion --no-log-file fish) \ 50 - --zsh <($out/bin/zarf completion --no-log-file zsh) 49 + --bash <($out/bin/zarf completion bash) \ 50 + --fish <($out/bin/zarf completion fish) \ 51 + --zsh <($out/bin/zarf completion zsh) 51 52 ''; 52 53 53 54 meta = with lib; { ··· 55 56 mainProgram = "zarf"; 56 57 homepage = "https://zarf.dev"; 57 58 license = licenses.asl20; 58 - maintainers = with maintainers; [ ragingpastry ]; 59 + maintainers = with maintainers; [ 60 + ragingpastry 61 + ]; 59 62 }; 60 63 }