mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
39 lines
674 B
Nix
39 lines
674 B
Nix
{
|
|
lib,
|
|
ruby,
|
|
bundlerApp,
|
|
bundlerUpdateScript,
|
|
defaultGemConfig,
|
|
nixosTests,
|
|
}:
|
|
|
|
bundlerApp {
|
|
pname = "oxidized";
|
|
gemdir = ./.;
|
|
|
|
inherit ruby;
|
|
|
|
exes = [
|
|
"oxidized"
|
|
"oxs"
|
|
];
|
|
|
|
gemConfig = defaultGemConfig;
|
|
|
|
passthru = {
|
|
tests = nixosTests.oxidized;
|
|
updateScript = bundlerUpdateScript "oxidized";
|
|
};
|
|
|
|
meta = {
|
|
description = "Network device configuration backup tool. It's a RANCID replacement";
|
|
homepage = "https://github.com/ytti/oxidized";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
nicknovitski
|
|
liberodark
|
|
johannwagner
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|