factoriolab: init at 3.8.1 (#358014)
[NixPkgs.git] / pkgs / tools / package-management / licensee / default.nix
blob02e5f919fb58d6d285468bd8008aaa9046d1e4ac
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "licensee";
5   gemdir = ./.;
6   exes = [ "licensee" ];
8   passthru.updateScript = bundlerUpdateScript "licensee";
10   meta = with lib; {
11     description = "Ruby Gem to detect under what license a project is distributed";
12     homepage    = "https://licensee.github.io/licensee/";
13     license     = licenses.mit;
14     maintainers = [ maintainers.sternenseemann ];
15     platforms   = platforms.unix;
16     mainProgram = "licensee";
17   };