mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
24 lines
573 B
Nix
24 lines
573 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gore";
|
|
version = "0.5.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "motemen";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Z2WOgkgi/JK/s0961FvgboJwYtxbFdRSzzPiE74SVaY=";
|
|
};
|
|
|
|
vendorHash = "sha256-1ftO+Bjc+vqB/azn4K6iRNrCLrz+QjpPzNfja3yvOrs=";
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Yet another Go REPL that works nicely";
|
|
homepage = "https://github.com/motemen/gore";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ offline ];
|
|
};
|
|
}
|