2021-11-28 05:54:47 +01:00
|
|
|
{ lib
|
|
|
|
, bundlerApp
|
|
|
|
, bundlerUpdateScript
|
|
|
|
}:
|
|
|
|
|
2023-07-22 19:43:12 +02:00
|
|
|
bundlerApp {
|
2021-11-28 05:54:47 +01:00
|
|
|
pname = "pru";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "pru" ];
|
|
|
|
|
2023-07-22 19:43:12 +02:00
|
|
|
meta = {
|
2021-11-28 05:54:47 +01:00
|
|
|
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.).
|
|
|
|
'';
|
2023-07-22 19:43:12 +02:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
2021-11-28 05:54:47 +01:00
|
|
|
};
|
|
|
|
|
2023-07-22 19:43:12 +02:00
|
|
|
passthru.updateScript = bundlerUpdateScript "pru";
|
2021-11-28 05:54:47 +01:00
|
|
|
}
|