mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
18 lines
412 B
Nix
18 lines
412 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;
|
|
};
|
|
}
|