20 lines
451 B
Nix
20 lines
451 B
Nix
{
|
|
lib,
|
|
bundlerApp,
|
|
bundlerUpdateScript,
|
|
}:
|
|
bundlerApp {
|
|
pname = "licensed";
|
|
gemdir = ./.;
|
|
exes = [ "licensed" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "licensed";
|
|
|
|
meta = {
|
|
description = "Ruby gem to cache and verify the licenses of dependencies";
|
|
homepage = "https://github.com/github/licensed";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.jcaesar ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|