1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 02:24:27 +00:00
nixpkgs/pkgs/development/tools/pry/default.nix
2020-04-10 17:54:53 +01:00

18 lines
414 B
Nix

{ 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;
};
}