Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
20 lines
516 B
Nix
20 lines
516 B
Nix
{ 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";
|
|
};
|
|
}
|