Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 25 lines 570 B view raw
1{ 2 lib, 3 ruby, 4 bundlerApp, 5 bundlerUpdateScript, 6}: 7 8bundlerApp { 9 pname = "inspec"; 10 gemdir = ./.; 11 12 inherit ruby; 13 14 exes = [ "inspec" ]; 15 16 passthru.updateScript = bundlerUpdateScript "inspec"; 17 18 meta = with lib; { 19 description = "Inspec is an open-source testing framework for infrastructure with a human- and machine-readable language for specifying compliance, security and policy requirements"; 20 homepage = "https://inspec.io/"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ dylanmtaylor ]; 23 mainProgram = "inspec"; 24 }; 25}