Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 25 lines 599 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "gore"; 5 version = "0.5.7"; 6 7 src = fetchFromGitHub { 8 owner = "motemen"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "sha256-J6rXz62y/qj4GFXnUwpfx9UEUQaUVQjf7KQCSzmNsws="; 12 }; 13 14 vendorHash = "sha256-MpmDQ++32Rop1yYcibEr7hQJ7YAU1QvITzTSstL5V9w="; 15 16 doCheck = false; 17 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 }; 25}