python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / package-management / licensee / default.nix
blobfb33f498bbc39ce1e4399bf802e2d9d7ba3520c6
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 = "A 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   };