nixpkgs/pkgs/by-name/pr/pru/package.nix
Anderson Torres cab2a1296e
treewide: remove AndersonTorres from maintainers
As I said before, I want to keep a narrow focus on Nixpkgs. Now that I am back
at undergrad, this focus should be even narrower: I will keep my eyes on Emacs,
and nothing else.
2025-02-12 00:36:02 -03:00

26 lines
555 B
Nix

{
lib,
bundlerApp,
bundlerUpdateScript,
}:
bundlerApp {
pname = "pru";
gemdir = ./.;
exes = [ "pru" ];
meta = {
homepage = "https://github.com/grosser/pru";
description = "Pipeable Ruby";
longDescription = ''
pru allows to use Ruby scripts as filters, working as a convenient,
higher-level replacement of typical text processing tools (like sed, awk,
grep etc.).
'';
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
};
passthru.updateScript = bundlerUpdateScript "pru";
}