nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, bundlerEnv, ruby, perl, autoconf }:
2
3bundlerEnv {
4 name = "redis-dump-0.3.5";
5
6 inherit ruby;
7 gemdir = ./.;
8
9 buildInputs = [ perl autoconf ];
10
11 meta = with lib; {
12 broken = true; # needs ruby 2.0
13 description = "Backup and restore your Redis data to and from JSON";
14 homepage = http://delanotes.com/redis-dump/;
15 license = licenses.mit;
16 maintainers = with maintainers; [ offline ];
17 platforms = platforms.unix;
18 };
19}