nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 21 lines 412 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "pry"; 9 gemdir = ./.; 10 exes = [ "pry" ]; 11 12 passthru.updateScript = bundlerUpdateScript "pry"; 13 14 meta = { 15 description = "Ruby runtime developer console and IRB alternative"; 16 homepage = "https://pryrepl.org"; 17 license = lib.licenses.mit; 18 maintainers = [ lib.maintainers.tckmn ]; 19 platforms = lib.platforms.unix; 20 }; 21}