Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 22 lines 493 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "licensee"; 9 gemdir = ./.; 10 exes = [ "licensee" ]; 11 12 passthru.updateScript = bundlerUpdateScript "licensee"; 13 14 meta = with lib; { 15 description = "Ruby Gem to detect under what license a project is distributed"; 16 homepage = "https://licensee.github.io/licensee/"; 17 license = licenses.mit; 18 maintainers = [ maintainers.sternenseemann ]; 19 platforms = platforms.unix; 20 mainProgram = "licensee"; 21 }; 22}