nixpkgs/pkgs/development/tools/gore/default.nix

25 lines
575 B
Nix
Raw Normal View History

{ 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
doCheck = false;
meta = with lib; {
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 ];
};
}