mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
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 = "Ruby runtime developer console and IRB alternative";
|
|
homepage = "https://pryrepl.org";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.tckmn ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|