Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 25 lines 527 B view raw
1{ 2 lib, 3 ruby, 4 bundlerApp, 5 bundlerUpdateScript, 6}: 7 8bundlerApp { 9 pname = "serverspec"; 10 gemdir = ./.; 11 12 inherit ruby; 13 14 exes = [ "serverspec-init" ]; 15 16 passthru.updateScript = bundlerUpdateScript "serverspec"; 17 18 meta = with lib; { 19 description = "RSpec tests for your servers configured by CFEngine, Puppet, Ansible, Itamae or anything else"; 20 homepage = "https://serverspec.org/"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ dylanmtaylor ]; 23 mainProgram = "serverspec-init"; 24 }; 25}