2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-06-10 06:22:51 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gore";
|
2021-07-30 10:40:55 +01:00
|
|
|
version = "0.5.3";
|
2020-06-10 06:22:51 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "motemen";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-07-30 10:40:55 +01:00
|
|
|
sha256 = "sha256-uLU4uZaQA9u6BUQZ0Rb4Yqg/oJOZ529gIiOwmmyg05A=";
|
2020-06-10 06:22:51 +01:00
|
|
|
};
|
|
|
|
|
2021-07-30 10:40:55 +01:00
|
|
|
vendorSha256 = "sha256-/yggEibpQK9Uk116RkE5XbbJe6j4WsIC3GtKPU/P2hU=";
|
2020-06-10 06:22:51 +01:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "Yet another Go REPL that works nicely";
|
2020-06-10 06:22:51 +01:00
|
|
|
homepage = "https://github.com/motemen/gore";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ offline ];
|
|
|
|
};
|
|
|
|
}
|