nixpkgs/pkgs/tools/admin/oxidized/default.nix

21 lines
553 B
Nix
Raw Normal View History

{ lib, ruby, bundlerApp, bundlerUpdateScript }:
2018-04-19 11:18:49 +01:00
2019-08-13 22:52:01 +01:00
bundlerApp {
2018-04-19 11:18:49 +01:00
pname = "oxidized";
gemdir = ./.;
inherit ruby;
exes = [ "oxidized" "oxidized-web" "oxidized-script" ];
passthru.updateScript = bundlerUpdateScript "oxidized";
2018-04-19 11:18:49 +01:00
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 ];
2018-04-19 11:18:49 +01:00
platforms = platforms.linux;
};
}