python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / admin / oxidized / default.nix
blob022b304a845934b8ec5c72c6ed0453aa21c4feb7
1 { lib, ruby, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "oxidized";
5   gemdir = ./.;
7   inherit ruby;
9   exes = [ "oxidized" "oxidized-web" "oxidized-script" ];
11   passthru.updateScript = bundlerUpdateScript "oxidized";
13   meta = with lib; {
14     description = "A network device configuration backup tool. It's a RANCID replacement!";
15     homepage    = "https://github.com/ytti/oxidized";
16     license     = licenses.asl20;
17     maintainers = with maintainers; [ willibutz nicknovitski ];
18     platforms   = platforms.linux;
19   };