Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ed073806a439
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 74cee86d58e2
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 1, 2020

  1. k9s: 0.17.7 -> 0.18.1

    r-ryantm authored and marsam committed Apr 1, 2020
    Copy the full SHA
    e1aa196 View commit details

Commits on Apr 2, 2020

  1. Merge pull request #83982 from r-ryantm/auto-update/k9s

    k9s: 0.17.7 -> 0.18.1
    marsam authored Apr 2, 2020
    Copy the full SHA
    74cee86 View commit details
Showing with 4 additions and 6 deletions.
  1. +4 −6 pkgs/applications/networking/cluster/k9s/default.nix
10 changes: 4 additions & 6 deletions pkgs/applications/networking/cluster/k9s/default.nix
Original file line number Diff line number Diff line change
@@ -2,25 +2,23 @@

buildGoModule rec {
pname = "k9s";
version = "0.17.7";
# rev is the release commit, mainly for version command output
rev = "8fedc42304ce33df314664eb0c4ac73be59065af";
version = "0.18.1";

src = fetchFromGitHub {
owner = "derailed";
repo = "k9s";
rev = "v${version}";
sha256 = "0bqx1ckk89vzmk6fmqmv03cbdvw0agwrqzywzw35b4n0di37x0nv";
sha256 = "0a5x4yamvx2qlwngfvainbhplwp0hqwgvdqlj2jbrbz4hfhr1l59";
};

buildFlagsArray = ''
-ldflags=
-s -w
-X github.com/derailed/k9s/cmd.version=${version}
-X github.com/derailed/k9s/cmd.commit=${rev}
-X github.com/derailed/k9s/cmd.commit=${src.rev}
'';

modSha256 = "06m4xgl29zx6zpqx630m9cm52wmljms9cvly5f4pqdb4zicq7n86";
modSha256 = "0wpf6iyq6p3a8azdkn17gdp01wq9khyzr1bab6qgvsnsnhnjzcky";

meta = with stdenv.lib; {
description = "Kubernetes CLI To Manage Your Clusters In Style.";