pry: init at 0.12.2

This commit is contained in:
Andy Tockman
2019-08-15 19:20:48 -05:00
parent 31a577c736
commit e90defbcf9
6 changed files with 76 additions and 0 deletions
+17
View File
@@ -0,0 +1,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;
};
}