Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
527 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02: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 ];
mainProgram = "serverspec-init";
};
}