redis-dump-go: init at 0.8.2
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "redis-dump-go";
|
||||
version = "0.8.2";
|
||||
|
||||
vendorHash = null;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "yannh";
|
||||
repo = "redis-dump-go";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-+5iYigtMQvd6D90mpKyMa7ZKm2UDtCG91uFZ7dURBT4=";
|
||||
};
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/yannh/redis-dump-go";
|
||||
description = "Dump Redis keys to a file in RESP format using multiple connections";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.richiejp ];
|
||||
changelog = "https://github.com/yannh/redis-dump-go/releases/tag/v${version}";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user