Merge pull request #244918 from atorres1985-contrib/pru

pru: rewrite

authored by

pennae and committed by
GitHub
8d51522a 866c4b39

+5 -5
+5 -5
pkgs/tools/text/pru/default.nix
··· 3 3 , bundlerUpdateScript 4 4 }: 5 5 6 - bundlerApp rec { 6 + bundlerApp { 7 7 pname = "pru"; 8 8 gemdir = ./.; 9 9 exes = [ "pru" ]; 10 10 11 - meta = with lib; { 11 + meta = { 12 12 homepage = "https://github.com/grosser/pru"; 13 13 description = "Pipeable Ruby"; 14 14 longDescription = '' ··· 16 16 higher-level replacement of typical text processing tools (like sed, awk, 17 17 grep etc.). 18 18 ''; 19 - license = licenses.mit; 20 - maintainers = with maintainers; [ AndersonTorres ]; 19 + license = lib.licenses.mit; 20 + maintainers = with lib.maintainers; [ AndersonTorres ]; 21 21 }; 22 22 23 - passthru.updateScript = bundlerUpdateScript pname; 23 + passthru.updateScript = bundlerUpdateScript "pru"; 24 24 }