Unverified Commit 12725869 authored by Mathew Polzin's avatar Mathew Polzin Committed by GitHub
Browse files

kubecolor: 0.3.3 -> 0.4.0, and fix included packages (#339640)

parents 6c8bdaa2 aa675a6c
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -2,19 +2,23 @@

buildGoModule rec {
  pname = "kubecolor";
  version = "0.3.3";
  version = "0.4.0";

  src = fetchFromGitHub {
    owner = pname;
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-VGpyYc6YmRr58OSRQvWTo4f8ku8L1/gn0ilbQSotO2k=";
    sha256 = "sha256-jOFeTAfV7X8+z+DBOBOFVcspxZ8QssKFWRGK9HnqBO0=";
  };

  vendorHash = "sha256-Gzz+mCEMQCcLwTiGMB8/nXk7HDAEGkEapC/VOyXrn/Q=";
  vendorHash = "sha256-b99HAM1vsncq9Q5XJiHZHyv7bjQs6GGyNAMONmGpxms=";

  ldflags = [ "-s" "-w" "-X main.Version=${version}" ];

  subPackages = [
    "."
  ];

  meta = with lib; {
    description = "Colorizes kubectl output";
    mainProgram = "kubecolor";