2023-04-18 17:33:16 +00:00
|
|
|
{ lib, ruby, bundlerApp, bundlerUpdateScript }:
|
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "serverspec";
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
|
|
|
|
exes = ["serverspec-init"];
|
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript "serverspec";
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "RSpec tests for your servers configured by CFEngine, Puppet, Ansible, Itamae or anything else";
|
|
|
|
homepage = "https://serverspec.org/";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dylanmtaylor ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "serverspec-init";
|
2023-04-18 17:33:16 +00:00
|
|
|
};
|
|
|
|
}
|