2020-08-20 17:08:02 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "licensee";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "licensee" ];
|
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript "licensee";
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Ruby Gem to detect under what license a project is distributed";
|
2020-08-20 17:08:02 +00:00
|
|
|
homepage = "https://licensee.github.io/licensee/";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
|
|
platforms = platforms.unix;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "licensee";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
}
|