biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / gore / default.nix
blobaf9b48e85a382b0c9e2570946cf73b83fb73e6d4
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gore";
5   version = "0.5.7";
7   src = fetchFromGitHub {
8     owner = "motemen";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-J6rXz62y/qj4GFXnUwpfx9UEUQaUVQjf7KQCSzmNsws=";
12   };
14   vendorHash = "sha256-MpmDQ++32Rop1yYcibEr7hQJ7YAU1QvITzTSstL5V9w=";
16   doCheck = false;
18   meta = with lib; {
19     description = "Yet another Go REPL that works nicely";
20     mainProgram = "gore";
21     homepage = "https://github.com/motemen/gore";
22     license = licenses.mit;
23     maintainers = with maintainers; [ offline ];
24   };