aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/admin/oxidized/default.nix
blob: 01129c5afb1073295b58df04796297a9639db473 (plain)
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" "oxidized-web" "oxidized-script" ];

  passthru.updateScript = bundlerUpdateScript "oxidized";

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