mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
25 lines
575 B
Nix
25 lines
575 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gore";
|
|
version = "0.5.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "motemen";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-ipHvflsVBSjqohV/PliS0s0Nhie4nIP/HgupNH/Yui4=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-HrdNWsUVz5G5tG/ZFz2z1Vt4kM12I088/6OIkRFyDl8=";
|
|
|
|
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 ];
|
|
};
|
|
}
|