lol
1{ lib, ruby, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "oxidized";
5 gemdir = ./.;
6
7 inherit ruby;
8
9 exes = [ "oxidized" "oxs" ];
10
11 passthru.updateScript = bundlerUpdateScript "oxidized";
12
13 meta = with lib; {
14 description = "A network device configuration backup tool. It's a RANCID replacement!";
15 homepage = "https://github.com/ytti/oxidized";
16 license = licenses.asl20;
17 maintainers = with maintainers; [ nicknovitski ] ++ teams.wdz.members;
18 platforms = platforms.linux;
19 };
20}