redis-dump: init at 0.3.5

This commit is contained in:
Jaka Hudoklin
2016-05-02 17:31:30 +02:00
parent 8a1ccb5f70
commit 097a05a5b1
6 changed files with 92 additions and 0 deletions
@@ -0,0 +1,20 @@
{ stdenv, lib, bundlerEnv, ruby, perl, autoconf }:
bundlerEnv {
name = "redis-dump-0.3.5";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
buildInputs = [ perl autoconf ];
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 ];
platforms = platforms.unix;
};
}