1{ lib, ruby, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "inspec";
5 gemdir = ./.;
6
7 inherit ruby;
8
9 exes = ["inspec"];
10
11 passthru.updateScript = bundlerUpdateScript "inspec";
12
13 meta = with lib; {
14 description = "Inspec is an open-source testing framework for infrastructure with a human- and machine-readable language for specifying compliance, security and policy requirements";
15 homepage = "https://inspec.io/";
16 license = licenses.asl20;
17 maintainers = with maintainers; [ dylanmtaylor ];
18 mainProgram = "inspec";
19 };
20}