2020-04-24 23:36:52 +00:00
|
|
|
{ lib, ruby, bundlerApp, bundlerUpdateScript }:
|
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "oxidized";
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
exes = [ "oxidized" "oxs" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript "oxidized";
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-01-13 08:15:51 +00:00
|
|
|
description = "A network device configuration backup tool. It's a RANCID replacement";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/ytti/oxidized";
|
|
|
|
license = licenses.asl20;
|
2023-11-16 04:20:00 +00:00
|
|
|
maintainers = with maintainers; [ nicknovitski ] ++ teams.wdz.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|