arkade 0.9.3 -> 0.9.4 https://github.com/alexellis/arkade/releases attrpath: arkade Checking auto update branch... No auto update branch exists [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Found old vendorHash = sha256-9QQuFrICfYLkoObNFsIn3H6brcv3qXL3FIguQMZ02HY= [golangModuleVersion] Replaced vendorHash with sha256-9QQuFrICfYLkoObNFsIn3H6brcv3qXL3FIguQMZ02HY= [golangModuleVersion] Finished updating vendorHash [updateScript] [updateScript] skipping because derivation has no updateScript [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/applications/networking/cluster/arkade/default.nix b/pkgs/applications/networking/cluster/arkade/default.nix index d2a63475e35..020277a33e7 100644 --- a/pkgs/applications/networking/cluster/arkade/default.nix +++ b/pkgs/applications/networking/cluster/arkade/default.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "arkade"; - version = "0.9.3"; + version = "0.9.4"; src = fetchFromGitHub { owner = "alexellis"; repo = "arkade"; rev = version; - sha256 = "sha256-UEtKjZgVaNW6GyCId9D/61mmd79IxV4kPQXbyDpDU1Y="; + sha256 = "sha256-r3cSHiNlWrP7JCqYOy86mn6ssfDEbm6DYerVCoARz7M="; }; CGO_ENABLED = 0; Successfully finished processing cachix "/nix/store/fggzl8zvvrdk13djynlzp4dc499n96c7-arkade-0.9.4" [check][nixpkgs-review] Result of `nixpkgs-review` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
Automatic update generated by [nixpkgs-update](https://github.com/ryantm/nixpkgs-update) tools. This update was made based on information from https://github.com/alexellis/arkade/releases. meta.description for arkade is: Open Source Kubernetes Marketplace meta.homepage for arkade is: https://github.com/alexellis/arkade ###### Updates performed - Golang update ###### To inspect upstream changes - [Release on GitHub](https://github.com/alexellis/arkade/releases/tag/0.9.4) - [Compare changes on GitHub](https://github.com/alexellis/arkade/compare/0.9.3...0.9.4) ###### Impact
Checks done (click to expand) --- - built on NixOS - The tests defined in `passthru.tests`, if any, passed - found 0.9.4 with grep in /nix/store/fggzl8zvvrdk13djynlzp4dc499n96c7-arkade-0.9.4 - found 0.9.4 in filename of file in /nix/store/fggzl8zvvrdk13djynlzp4dc499n96c7-arkade-0.9.4 ---
Rebuild report (if merged into master) (click to expand) ``` 1 total rebuild path(s) 1 package rebuild(s) First fifty rebuilds by attrpath arkade ```
Instructions to test this update (click to expand) --- Either **download from Cachix**: ``` nix-store -r /nix/store/fggzl8zvvrdk13djynlzp4dc499n96c7-arkade-0.9.4 \ --option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \ --option trusted-public-keys ' nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= ' ``` (The Cachix cache is only trusted for this store-path realization.) For the Cachix download to work, your user must be in the `trusted-users` list or you can use `sudo` since root is effectively trusted. Or, **build yourself**: ``` nix-build -A arkade https://github.com/r-ryantm/nixpkgs/archive/2d7bb420c8d4bd47bfb8f9b345da7a38ebea78a6.tar.gz ``` After you've downloaded or built it, look at the files and if there are any, run the binaries: ``` ls -la /nix/store/fggzl8zvvrdk13djynlzp4dc499n96c7-arkade-0.9.4 ls -la /nix/store/fggzl8zvvrdk13djynlzp4dc499n96c7-arkade-0.9.4/bin ``` ---

### Pre-merge build results We have automatically built all packages that will get rebuilt due to this change. This gives evidence on whether the upgrade will break dependent packages. Note sometimes packages show up as _failed to build_ independent of the change, simply because they are already broken on the target branch. Result of `nixpkgs-review` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)
1 package built:
--- ###### Maintainer pings cc @welteki @techknowlogick for [testing](https://github.com/ryantm/nixpkgs-update/blob/master/doc/nixpkgs-maintainer-faq.md#r-ryantm-opened-a-pr-for-my-package-what-do-i-do). https://api.github.com/repos/NixOS/nixpkgs/pulls/220076 arkade 0.9.2 -> 0.9.3 https://repology.org/metapackage/arkade/versions attrpath: arkade Checking auto update branch... No auto update branch exists Old version 0.9.2" not present in master derivation file with contents: { lib , stdenv , buildGoModule , fetchFromGitHub , installShellFiles }: buildGoModule rec { pname = "arkade"; version = "0.9.4"; src = fetchFromGitHub { owner = "alexellis"; repo = "arkade"; rev = version; sha256 = "sha256-r3cSHiNlWrP7JCqYOy86mn6ssfDEbm6DYerVCoARz7M="; }; CGO_ENABLED = 0; nativeBuildInputs = [ installShellFiles ]; vendorHash = "sha256-9QQuFrICfYLkoObNFsIn3H6brcv3qXL3FIguQMZ02HY="; # Exclude pkg/get: tests downloading of binaries which fail when sandbox=true subPackages = [ "." "cmd" "pkg/apps" "pkg/archive" "pkg/config" "pkg/env" "pkg/helm" "pkg/k8s" "pkg/types" ]; ldflags = [ "-s" "-w" "-X github.com/alexellis/arkade/cmd.GitCommit=ref/tags/${version}" "-X github.com/alexellis/arkade/cmd.Version=${version}" ]; postInstall = '' installShellCompletion --cmd arkade \ --bash <($out/bin/arkade completion bash) \ --zsh <($out/bin/arkade completion zsh) \ --fish <($out/bin/arkade completion fish) ''; meta = with lib; { homepage = "https://github.com/alexellis/arkade"; description = "Open Source Kubernetes Marketplace"; license = licenses.mit; maintainers = with maintainers; [ welteki techknowlogick ]; }; }