My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/text/pru/default.nix

24 lines
571 B

{ lib
, bundlerApp
, bundlerUpdateScript
}:
bundlerApp rec {
pname = "pru";
gemdir = ./.;
exes = [ "pru" ];
meta = with lib; {
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 = licenses.mit;
maintainers = with maintainers; [ AndersonTorres ];
};
passthru.updateScript = bundlerUpdateScript pname;
}