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

View file

@ -0,0 +1,3 @@
---
BUNDLE_PATH: vendor
BUNDLE_DISABLE_SHARED_GEMS: '1'

View file

@ -0,0 +1,3 @@
source 'https://rubygems.org'
gem 'redis-dump'

View file

@ -0,0 +1,21 @@
GEM
remote: https://rubygems.org/
specs:
drydock (0.6.9)
redis (3.3.0)
redis-dump (0.3.5)
drydock (>= 0.6.9)
redis (>= 2.0)
uri-redis (>= 0.4.0)
yajl-ruby (>= 0.1)
uri-redis (0.4.2)
yajl-ruby (1.2.1)
PLATFORMS
ruby
DEPENDENCIES
redis-dump
BUNDLED WITH
1.11.2

View file

@ -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;
};
}

View file

@ -0,0 +1,41 @@
{
drydock = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "0grf3361mh93lczljmnwafl7gbcp9kk1bjpfwx4ykpd43fzdbfyj";
type = "gem";
};
version = "0.6.9";
};
redis = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "1v68ggm0pwcyml3ngfyngwgvypwmsrmji1kyx48qqcg045zjs5p6";
type = "gem";
};
version = "3.3.0";
};
redis-dump = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "0y6s3nvcw84jqqvp9pjg9qmqyc0b8jkrp0dknhjjr0lg2q3fq87h";
type = "gem";
};
version = "0.3.5";
};
uri-redis = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "13n8ak41rikkbmml054pir4i1xbgjpmf3dbqihc2kcrgmz3dg81a";
type = "gem";
};
version = "0.4.2";
};
yajl-ruby = {
source = {
sha256 = "0zvvb7i1bl98k3zkdrnx9vasq0rp2cyy5n7p9804dqs4fz9xh9vf";
type = "gem";
};
version = "1.2.1";
};
}

View file

@ -6243,6 +6243,10 @@ in
hammer = callPackage ../development/tools/parsing/hammer { };
redis-dump = callPackage ../development/tools/redis-dump {
ruby = ruby_2_0;
};
re2c = callPackage ../development/tools/parsing/re2c { };
remake = callPackage ../development/tools/build-managers/remake { };