mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
20 lines
479 B
Nix
20 lines
479 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 ];
|
||
|
};
|
||
|
}
|