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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
526 B
Nix
Raw Normal View History

{ lib, ruby, bundlerApp, bundlerUpdateScript }:
2018-04-19 10:18:49 +00:00
2019-08-13 21:52:01 +00:00
bundlerApp {
2018-04-19 10:18:49 +00:00
pname = "oxidized";
gemdir = ./.;
inherit ruby;
exes = [ "oxidized" "oxs" ];
2018-04-19 10:18:49 +00:00
passthru.updateScript = bundlerUpdateScript "oxidized";
2018-04-19 10:18:49 +00:00
meta = with lib; {
description = "A network device configuration backup tool. It's a RANCID replacement";
homepage = "https://github.com/ytti/oxidized";
2018-04-19 10:18:49 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ nicknovitski ] ++ teams.wdz.members;
2018-04-19 10:18:49 +00:00
platforms = platforms.linux;
};
}