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-01-21 18:04:57 +00:00
version = "0.5.2";
2020-06-10 06:22:51 +01:00
src = fetchFromGitHub {
owner = "motemen";
repo = pname;
rev = "v${version}";
2021-01-21 18:04:57 +00:00
sha256 = "sha256-oiaZvoCxA69slNb3LArLJfaqzfQ1YImxLuQHzW5tibo=";
2020-06-10 06:22:51 +01:00
};
2021-01-21 18:04:57 +00:00
vendorSha256 = "sha256-vJG7sc+ngagtrYvTwO3OrCSFUgAA7zhaXHkU97nIhcY=";
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 ];
};
}