depot/third_party/nixpkgs/pkgs/development/tools/redis-dump/default.nix
Default email 4fc29cb41f Project import generated by Copybara.
GitOrigin-RevId: 135073a87b7e2c631739f4ffa016e1859b1a425e
2020-05-29 08:06:01 +02:00

17 lines
489 B
Nix

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "redis-dump";
gemdir = ./.;
exes = [ "redis-dump" "redis-load" ];
passthru.updateScript = bundlerUpdateScript "redis-dump";
meta = with lib; {
description = "Backup and restore your Redis data to and from JSON";
homepage = "http://delanotes.com/redis-dump/";
license = licenses.mit;
maintainers = with maintainers; [ offline manveru nicknovitski ];
platforms = platforms.unix;
};
}