xcursor-pro: init at 2.0.2 (#335188)
[NixPkgs.git] / pkgs / development / tools / license_finder / default.nix
blobc30860a9a4ba2b9199d8007b78842b65d9b01ee0
2   lib,
3   bundlerEnv,
4   bundlerUpdateScript,
5   ruby,
6 }:
8 bundlerEnv {
9   pname = "license_finder";
10   version = "7.0.1";
12   inherit ruby;
13   gemdir = ./.;
15   passthru.updateScript = bundlerUpdateScript "license_finder";
17   meta = with lib; {
18     description = "Find licenses for your project's dependencies";
19     homepage = "https://github.com/pivotal/licensefinder";
20     license = licenses.mit;
21     maintainers = [ ];
22     platforms = platforms.unix;
23   };