oxidized: init at 0.21.0

This commit is contained in:
WilliButz
2018-05-24 04:40:45 +02:00
committed by Robin Gloster
parent e91d3c9179
commit dc433b476e
7 changed files with 320 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ lib, fetchFromGitHub, ruby, git, bundlerApp }:
bundlerApp rec {
pname = "oxidized";
gemdir = ./.;
inherit ruby;
exes = [ "oxidized" "oxidized-web" "oxidized-script" ];
meta = with lib; {
description = "Oxidized is a network device configuration backup tool. It's a RANCID replacement!";
homepage = https://github.com/ytti/oxidized;
license = licenses.asl20;
maintainers = [ maintainers.willibutz ];
platforms = platforms.linux;
};
}