My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/license_finder/default.nix

19 lines
479 B

{ 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;
};
}