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