1 { bundlerEnv, ruby, lib, bundlerUpdateScript }:
4 name = "${pname}-${version}";
5 pname = "bundler-audit";
6 version = (import ./gemset.nix).bundler-audit.version;
11 passthru.updateScript = bundlerUpdateScript "bundler-audit";
14 description = "Patch-level verification for Bundler";
17 - Checks for vulnerable versions of gems in Gemfile.lock.
18 - Checks for insecure gem sources (http://).
19 - Allows ignoring certain advisories that have been manually worked around.
20 - Prints advisory information.
21 - Does not require a network connection.
23 homepage = "https://github.com/rubysec/bundler-audit";
24 changelog = "https://github.com/rubysec/bundler-audit/blob/v${version}/ChangeLog.md";
25 license = licenses.gpl3Plus;
26 maintainers = with maintainers; [ primeos nicknovitski ];
27 platforms = platforms.unix;