72cbece6db
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).
20 lines
523 B
Nix
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;
|
|
};
|
|
}
|