about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/license_finder/default.nix
blob: 954e2dcd5183d0ad612a036fa824fd7fbdf2fb72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, bundlerEnv, bundlerUpdateScript, ruby }:

bundlerEnv {
  pname = "license_finder";
  version = "7.0.1";

  inherit ruby;
  gemdir = ./.;

  passthru.updateScript = bundlerUpdateScript "license_finder";

  meta = with lib; {
    description = "Find licenses for your project's dependencies";
    homepage = "https://github.com/pivotal/licensefinder";
    license = licenses.mit;
    maintainers = with maintainers; [ wolfangaukang ];
    platforms = platforms.unix;
  };
}