summary refs log tree commit diff
path: root/pkgs/tools/admin/oxidized/default.nix
blob: 6e09092874cc9ccc37d789bc325a46c6ada4988b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, ruby, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "oxidized";
  gemdir = ./.;

  inherit ruby;

  exes = [ "oxidized" "oxs" ];

  passthru.updateScript = bundlerUpdateScript "oxidized";

  meta = with lib; {
    description = "A network device configuration backup tool. It's a RANCID replacement!";
    homepage    = "https://github.com/ytti/oxidized";
    license     = licenses.asl20;
    maintainers = with maintainers; [ nicknovitski ] ++ teams.wdz.members;
    platforms   = platforms.linux;
  };
}