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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
573 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-06-10 05:22:51 +00:00
buildGoModule rec {
pname = "gore";
2023-10-03 20:11:35 +00:00
version = "0.5.7";
2020-06-10 05:22:51 +00:00
src = fetchFromGitHub {
owner = "motemen";
repo = pname;
rev = "v${version}";
2023-10-03 20:11:35 +00:00
sha256 = "sha256-J6rXz62y/qj4GFXnUwpfx9UEUQaUVQjf7KQCSzmNsws=";
2020-06-10 05:22:51 +00:00
};
2023-10-03 20:11:35 +00:00
vendorHash = "sha256-MpmDQ++32Rop1yYcibEr7hQJ7YAU1QvITzTSstL5V9w=";
2020-06-10 05:22:51 +00:00
doCheck = false;
meta = with lib; {
description = "Yet another Go REPL that works nicely";
2020-06-10 05:22:51 +00:00
homepage = "https://github.com/motemen/gore";
license = licenses.mit;
maintainers = with maintainers; [ offline ];
};
}