1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "redis-dump";
5 gemdir = ./.;
6 exes = [ "redis-dump" "redis-load" ];
7
8 passthru.updateScript = bundlerUpdateScript "redis-dump";
9
10 meta = with lib; {
11 description = "Backup and restore your Redis data to and from JSON";
12 homepage = "http://delanotes.com/redis-dump/";
13 license = licenses.mit;
14 maintainers = with maintainers; [ offline manveru nicknovitski ];
15 platforms = platforms.unix;
16 };
17}