aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/package-management/licensee/default.nix
blob: fb33f498bbc39ce1e4399bf802e2d9d7ba3520c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "licensee";
  gemdir = ./.;
  exes = [ "licensee" ];

  passthru.updateScript = bundlerUpdateScript "licensee";

  meta = with lib; {
    description = "A Ruby Gem to detect under what license a project is distributed";
    homepage    = "https://licensee.github.io/licensee/";
    license     = licenses.mit;
    maintainers = [ maintainers.sternenseemann ];
    platforms   = platforms.unix;
  };
}