nixpkgs/pkgs/development/tools/pry/default.nix

18 lines
414 B
Nix
Raw Normal View History

2019-08-16 00:20:48 +00:00
{ 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";
2019-08-16 00:20:48 +00:00
license = licenses.mit;
maintainers = [ maintainers.tckmn ];
platforms = platforms.unix;
};
}