summaryrefslogtreecommitdiff
path: root/pkgs/by-name/in/inspec/package.nix
blob: c2332d4fa87709c7d6dd1460ce7ccdb7d0dcafed (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  lib,
  ruby,
  bundlerApp,
  bundlerUpdateScript,
}:

bundlerApp {
  pname = "inspec";
  gemdir = ./.;

  inherit ruby;

  exes = [ "inspec" ];

  passthru.updateScript = bundlerUpdateScript "inspec";

  meta = {
    description = "Open-source testing framework for infrastructure with a human- and machine-readable language for specifying compliance, security and policy requirements";
    homepage = "https://inspec.io/";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ dylanmtaylor ];
    mainProgram = "inspec";
  };
}