nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / tools / admin / oxidized / default.nix
blob28a25b3f1d74d951bb0ca9c69f4de259b967a7bb
2   lib,
3   ruby,
4   bundlerApp,
5   bundlerUpdateScript,
6 }:
8 bundlerApp {
9   pname = "oxidized";
10   gemdir = ./.;
12   inherit ruby;
14   exes = [
15     "oxidized"
16     "oxs"
17   ];
19   passthru.updateScript = bundlerUpdateScript "oxidized";
21   meta = with lib; {
22     description = "Network device configuration backup tool. It's a RANCID replacement";
23     homepage = "https://github.com/ytti/oxidized";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ nicknovitski ] ++ teams.wdz.members;
26     platforms = platforms.linux;
27   };