Unverified Commit 23cc2b1f authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

Merge pull request #307844 from isabelroses/gotestsum-update

gotestsum: 1.10.1 -> 1.11.0
parents 3eabaa6c d47c917f
Loading
Loading
Loading
Loading
+10 −7
Original line number Diff line number Diff line
@@ -3,14 +3,17 @@
  fetchFromGitHub,
  buildGoModule,
}:
buildGoModule rec {
let
  version = "1.11.0";
in
buildGoModule {
  pname = "gotestsum";
  version = "1.10.1";
  inherit version;

  src = fetchFromGitHub {
    owner = "gotestyourself";
    repo = "gotestsum";
    rev = "refs/tags/v${version}";
    rev = "v${version}";
    hash = "sha256-Sq0ejnX7AJoPf3deBge8PMOq1NlMbw+Ljn145C5MQ+s=";
  };

@@ -26,13 +29,13 @@ buildGoModule rec {

  subPackages = [ "." ];

  meta = with lib; {
  meta = {
    homepage = "https://github.com/gotestyourself/gotestsum";
    changelog = "https://github.com/gotestyourself/gotestsum/releases/tag/v${version}";
    description = "A human friendly `go test` runner";
    mainProgram = "gotestsum";
    platforms = platforms.linux ++ platforms.darwin;
    license = licenses.asl20;
    maintainers = with maintainers; [ isabelroses ];
    platforms = with lib.platforms; linux ++ darwin;
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ isabelroses ];
  };
}