Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
456 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 = [ ];
platforms = platforms.unix;
};
}