biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / pry / default.nix
blobc39af508591faa46cfcdbcd9d152d21288b1cbf3
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "pry";
5   gemdir = ./.;
6   exes = [ "pry" ];
8   passthru.updateScript = bundlerUpdateScript "pry";
10   meta = with lib; {
11     description = "A Ruby runtime developer console and IRB alternative";
12     homepage    = "https://pryrepl.org";
13     license     = licenses.mit;
14     maintainers = [ maintainers.tckmn ];
15     platforms   = platforms.unix;
16   };