34 lines
600 B
Nix
34 lines
600 B
Nix
{
|
|
lib,
|
|
ruby,
|
|
bundlerApp,
|
|
bundlerUpdateScript,
|
|
nixosTests,
|
|
}:
|
|
|
|
bundlerApp {
|
|
pname = "oxidized";
|
|
gemdir = ./.;
|
|
|
|
inherit ruby;
|
|
|
|
exes = [
|
|
"oxidized"
|
|
"oxs"
|
|
];
|
|
|
|
passthru = {
|
|
tests = nixosTests.oxidized;
|
|
updateScript = bundlerUpdateScript "oxidized";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Network device configuration backup tool. It's a RANCID replacement";
|
|
homepage = "https://github.com/ytti/oxidized";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ nicknovitski ];
|
|
teams = [ teams.wdz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|