mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
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";
|
|
};
|
|
}
|