depot/third_party/nixpkgs/pkgs/by-name/li/licensed/package.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;
};
}