summary refs log tree commit diff
path: root/pkgs/development/tools/pry/default.nix
blob: 974b61617fbe5fa90697c50924adae30989b2248 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "pry";
  gemdir = ./.;
  exes = [ "pry" ];

  passthru.updateScript = bundlerUpdateScript "pry";

  meta = with lib; {
    description = "A Ruby runtime developer console and IRB alternative";
    homepage    = https://pryrepl.org;
    license     = licenses.mit;
    maintainers = [ maintainers.tckmn ];
    platforms   = platforms.unix;
  };
}