about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/redis-dump/default.nix
blob: c83117860100da200e175a8ede7fe4f4a457906d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, bundlerApp }:

bundlerApp {
  pname = "redis-dump";
  gemdir = ./.;
  exes = [ "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 ];
    platforms   = platforms.unix;
  };
}