nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 bundlerEnv,
4 bundlerUpdateScript,
5 ruby,
6}:
7
8bundlerEnv {
9 pname = "license_finder";
10 version = "7.0.1";
11
12 inherit ruby;
13 gemdir = ./.;
14
15 passthru.updateScript = bundlerUpdateScript "license_finder";
16
17 meta = {
18 description = "Find licenses for your project's dependencies";
19 homepage = "https://github.com/pivotal/licensefinder";
20 license = lib.licenses.mit;
21 maintainers = [ ];
22 platforms = lib.platforms.unix;
23 };
24}