about summary refs log tree commit diff
path: root/pkgs/tools/package-management/licensee/default.nix
blob: b72c218cd16aa1bbc11c036a35b766b9e8e567ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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;
    mainProgram = "licensee";
  };
}