about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/serverspec/default.nix
blob: 162b9d90cc03b2cf305540108002e527ce4ad54e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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 ];
  };
}