20 lines
479 B
Nix
20 lines
479 B
Nix
{ 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;
|
|
};
|
|
}
|