2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2016-05-02 16:31:30 +01:00
|
|
|
|
2019-05-03 17:57:51 +01:00
|
|
|
bundlerApp {
|
|
|
|
pname = "redis-dump";
|
2017-01-17 23:34:45 +00:00
|
|
|
gemdir = ./.;
|
2019-05-03 17:57:51 +01:00
|
|
|
exes = [ "redis-dump" ];
|
2016-05-02 16:31:30 +01:00
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "redis-dump";
|
|
|
|
|
2016-05-02 16:31:30 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Backup and restore your Redis data to and from JSON";
|
|
|
|
homepage = http://delanotes.com/redis-dump/;
|
|
|
|
license = licenses.mit;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ offline manveru nicknovitski ];
|
2016-05-02 16:31:30 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|