nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, ruby, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "serverspec";
5 gemdir = ./.;
6
7 inherit ruby;
8
9 exes = ["serverspec-init"];
10
11 passthru.updateScript = bundlerUpdateScript "serverspec";
12
13 meta = with lib; {
14 description = "RSpec tests for your servers configured by CFEngine, Puppet, Ansible, Itamae or anything else";
15 homepage = "https://serverspec.org/";
16 license = licenses.mit;
17 maintainers = with maintainers; [ dylanmtaylor ];
18 mainProgram = "serverspec-init";
19 };
20}