uhubctl: fix darwin build (#361491)
[NixPkgs.git] / pkgs / tools / misc / inspec / default.nix
blob759b1fcaed874e1c5f99f79c765a34d37b358d6f
1 { lib, ruby, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "inspec";
5   gemdir = ./.;
7   inherit ruby;
9   exes = ["inspec"];
11   passthru.updateScript = bundlerUpdateScript "inspec";
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   };