nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
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}