lol

redis-dump-go: init at 0.8.2 (#385110)

authored by

Sandro and committed by
GitHub
a17b3fe5 fd5a4d4b

+36
+6
maintainers/maintainer-list.nix
··· 20135 20135 githubId = 10631029; 20136 20136 name = "Richard Ipsum"; 20137 20137 }; 20138 + richiejp = { 20139 + email = "io@richiejp.com"; 20140 + github = "richiejp"; 20141 + githubId = 988098; 20142 + name = "Richard Palethorpe"; 20143 + }; 20138 20144 rick68 = { 20139 20145 email = "rick68@gmail.com"; 20140 20146 github = "rick68";
+30
pkgs/by-name/re/redis-dump-go/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + }: 7 + 8 + buildGoModule rec { 9 + pname = "redis-dump-go"; 10 + version = "0.8.2"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "yannh"; 14 + repo = "redis-dump-go"; 15 + tag = "v${version}"; 16 + hash = "sha256-+5iYigtMQvd6D90mpKyMa7ZKm2UDtCG91uFZ7dURBT4="; 17 + }; 18 + 19 + vendorHash = null; 20 + 21 + passthru.updateScript = nix-update-script { }; 22 + 23 + meta = { 24 + homepage = "https://github.com/yannh/redis-dump-go"; 25 + description = "Dump Redis keys to a file in RESP format using multiple connections"; 26 + license = lib.licenses.mit; 27 + maintainers = [ lib.maintainers.richiejp ]; 28 + changelog = "https://github.com/yannh/redis-dump-go/releases/tag/v${version}"; 29 + }; 30 + }