Unverified Commit 75113f97 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #242140 from SuperSandro2000/dive

dive: 0.10.0 -> 0.11.0
parents cb6f81a5 42842246
Loading
Loading
Loading
Loading
+9 −7
Original line number Diff line number Diff line
@@ -11,23 +11,25 @@

buildGoModule rec {
  pname = "dive";
  version = "0.10.0";
  version = "0.11.0";

  src = fetchFromGitHub {
    owner = "wagoodman";
    repo = pname;
    repo = "dive";
    rev = "v${version}";
    sha256 = "sha256-1pmw8pUlek5FlI1oAuvLSqDow7hw5rw86DRDZ7pFAmA=";
    hash = "sha256-9REthyb+bzsb7NBXkU9XyUZJFQHHrV1cG4//lTLgTgw=";
  };

  patches = [
    # fixes: unsafe.Slice requires go1.17 or later (-lang was set to go1.16; check go.mod)
    # https://github.com/wagoodman/dive/pull/461
    (fetchpatch {
      url = "https://github.com/wagoodman/dive/commit/fe9411c414418d839a8638bb9a12ccfc892b5845.patch";
      sha256 = "sha256-c0TcUQ87CeOiXHoTQ3z/04i72aDr403DL7fIbXTJ9cY=";
      url = "https://github.com/wagoodman/dive/commit/555555d777f961ad0a2d1bb843e87f434d731dba.patch";
      hash = "sha256-tPSgvENiVgrlQSkT7LbQPRYhkkaYQeWRJ0P4bA3XOiI=";
    })
  ];

  vendorSha256 = "sha256-YPkEei7d7mXP+5FhooNoMDARQLosH2fdSaLXGZ5C27o=";
  vendorHash = "sha256-6KIbTrkvdugsUKdFBqtPUFzs/6h2xslLFpr6S2nSBiY=";

  nativeBuildInputs = [ pkg-config ];

@@ -39,6 +41,6 @@ buildGoModule rec {
    description = "A tool for exploring each layer in a docker image";
    homepage = "https://github.com/wagoodman/dive";
    license = licenses.mit;
    maintainers = with maintainers; [ marsam spacekookie SuperSandro2000 ];
    maintainers = with maintainers; [ marsam SuperSandro2000 ];
  };
}