2019-07-22 05:02:47 -07:00
|
|
|
{ lib, ruby, bundlerApp, bundlerUpdateScript }:
|
2018-04-19 03:18:49 -07:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
bundlerApp {
|
2018-04-19 03:18:49 -07:00
|
|
|
pname = "oxidized";
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
|
|
|
|
exes = [ "oxidized" "oxidized-web" "oxidized-script" ];
|
|
|
|
|
2019-07-22 05:02:47 -07:00
|
|
|
passthru.updateScript = bundlerUpdateScript "oxidized";
|
|
|
|
|
2018-04-19 03:18:49 -07:00
|
|
|
meta = with lib; {
|
2020-10-25 21:08:40 -07:00
|
|
|
description = "A network device configuration backup tool. It's a RANCID replacement!";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/ytti/oxidized";
|
2018-04-19 03:18:49 -07:00
|
|
|
license = licenses.asl20;
|
2019-07-22 05:02:47 -07:00
|
|
|
maintainers = with maintainers; [ willibutz nicknovitski ];
|
2018-04-19 03:18:49 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|