gore: init at 0.5.0 (#89722)

This commit is contained in:
Jaka Hudoklin 2020-06-10 05:22:51 +00:00 committed by GitHub
parent 3c22d233e5
commit e8bcac75f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gore";
version = "0.5.0";
src = fetchFromGitHub {
owner = "motemen";
repo = pname;
rev = "v${version}";
sha256 = "61Hn3Vs4BZtAX8WNJlUeodvEWvwLo+lXKsc8JxRwOE4=";
};
vendorSha256 = "3bq6sRKS5dq7WCPpKGm2q5gFajthR3zhrTFGve9zXhY=";
meta = with stdenv.lib; {
description = "Yet another Go REPL that works nicely.";
homepage = "https://github.com/motemen/gore";
license = licenses.mit;
maintainers = with maintainers; [ offline ];
};
}

View File

@ -17415,6 +17415,8 @@ in
gopls = callPackage ../development/tools/gopls { };
gore = callPackage ../development/tools/gore { };
gotests = callPackage ../development/tools/gotests { };
gotestsum = callPackage ../development/tools/gotestsum { };