nixpkgs/pkgs/tools/admin/oxidized/default.nix
Jenny 72cbece6db
oxidized: 0.26.3 -> 0.29.1 (#234001)
This commit updates oxidized, fixes the oxidized-script executable
and removes the non existing oxidized-web executable (oxidized-web is
just a library for oxidized and does not provide a executable).
2023-05-30 18:46:49 +02:00

20 lines
523 B
Nix

{ lib, ruby, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "oxidized";
gemdir = ./.;
inherit ruby;
exes = [ "oxidized" "oxs" ];
passthru.updateScript = bundlerUpdateScript "oxidized";
meta = with lib; {
description = "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 netali ];
platforms = platforms.linux;
};
}