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
575 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-06-10 05:22:51 +00:00
buildGoModule rec {
pname = "gore";
2022-07-28 13:23:51 +00:00
version = "0.5.5";
2020-06-10 05:22:51 +00:00
src = fetchFromGitHub {
owner = "motemen";
repo = pname;
rev = "v${version}";
2022-07-28 13:23:51 +00:00
sha256 = "sha256-ZNv3sqwOEtxjvyqC9oR8xYwo8sywU2MF8ngBw407/ko=";
2020-06-10 05:22:51 +00:00
};
2022-03-22 06:49:48 +00:00
vendorSha256 = "sha256-HrdNWsUVz5G5tG/ZFz2z1Vt4kM12I088/6OIkRFyDl8=";
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 ];
};
}