summary refs log tree commit diff
path: root/pkgs/development/tools/redis-dump/default.nix
blob: 88c975b5735210e7b037ffc9b131107e920f0131 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, lib, bundlerEnv, ruby, perl, autoconf }:

bundlerEnv {
  name = "redis-dump-0.3.5";

  inherit ruby;
  gemdir = ./.;

  buildInputs = [ perl autoconf ];

  meta = with lib; {
    broken = true; # needs ruby 2.0
    description = "Backup and restore your Redis data to and from JSON";
    homepage    = http://delanotes.com/redis-dump/;
    license     = licenses.mit;
    maintainers = with maintainers; [ offline ];
    platforms   = platforms.unix;
  };
}