summary refs log blame commit diff
path: root/pkgs/development/tools/redis-dump/default.nix
blob: 2d4acd724d39b319a3125cda6e074682cecb4c55 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                         
 

                       
               
                                       
 

                                                           

                                                                        
                                                     
                               
                                                                     


                                 
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "redis-dump";
  gemdir = ./.;
  exes = [ "redis-dump" "redis-load" ];

  passthru.updateScript = bundlerUpdateScript "redis-dump";

  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 manveru nicknovitski ];
    platforms   = platforms.unix;
  };
}