nixpkgs/pkgs/development/tools/redis-dump/default.nix

18 lines
489 B
Nix
Raw Normal View History

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