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

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

  inherit ruby;

  exes = [ "oxidized" "oxidized-web" "oxidized-script" ];

  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 = [ maintainers.willibutz ];
    platforms   = platforms.linux;
  };
}