redis-dump: 0.3.5 -> 0.4.0

This commit is contained in:
Michael Fellinger
2019-05-03 18:57:51 +02:00
parent 7c506060fd
commit 09d0898eff
3 changed files with 28 additions and 20 deletions
@@ -1,19 +1,15 @@
{ lib, bundlerEnv, ruby, perl, autoconf }:
{ lib, bundlerApp }:
bundlerEnv {
name = "redis-dump-0.3.5";
inherit ruby;
bundlerApp {
pname = "redis-dump";
gemdir = ./.;
buildInputs = [ perl autoconf ];
exes = [ "redis-dump" ];
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 ];
maintainers = with maintainers; [ offline manveru ];
platforms = platforms.unix;
};
}