Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
451 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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;
};
}