nixpkgs/pkgs/development/tools/redis-dump/default.nix

19 lines
432 B
Nix
Raw Normal View History

2016-05-02 17:31:30 +02:00
{ stdenv, lib, bundlerEnv, ruby, perl, autoconf }:
bundlerEnv {
name = "redis-dump-0.3.5";
inherit ruby;
2017-01-18 00:34:45 +01:00
gemdir = ./.;
2016-05-02 17:31:30 +02:00
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;
};
}