Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 bundlerEnv, 4 bundlerUpdateScript, 5 ruby, 6}: 7 8bundlerEnv { 9 pname = "license_finder"; 10 version = "7.0.1"; 11 12 inherit ruby; 13 gemdir = ./.; 14 15 passthru.updateScript = bundlerUpdateScript "license_finder"; 16 17 meta = with lib; { 18 description = "Find licenses for your project's dependencies"; 19 homepage = "https://github.com/pivotal/licensefinder"; 20 license = licenses.mit; 21 maintainers = [ ]; 22 platforms = platforms.unix; 23 }; 24}