pru: init at 0.2.1

+53
+2
pkgs/tools/text/pru/Gemfile
··· 1 + source 'https://rubygems.org' 2 + gem 'pru'
+13
pkgs/tools/text/pru/Gemfile.lock
··· 1 + GEM 2 + remote: https://rubygems.org/ 3 + specs: 4 + pru (0.2.1) 5 + 6 + PLATFORMS 7 + ruby 8 + 9 + DEPENDENCIES 10 + pru 11 + 12 + BUNDLED WITH 13 + 2.1.4
+24
pkgs/tools/text/pru/default.nix
··· 1 + { lib 2 + , bundlerApp 3 + , bundlerUpdateScript 4 + }: 5 + 6 + bundlerApp rec { 7 + pname = "pru"; 8 + gemdir = ./.; 9 + exes = [ "pru" ]; 10 + 11 + meta = with lib; { 12 + homepage = "https://github.com/grosser/pru"; 13 + description = "Pipeable Ruby"; 14 + longDescription = '' 15 + pru allows to use Ruby scripts as filters, working as a convenient, 16 + higher-level replacement of typical text processing tools (like sed, awk, 17 + grep etc.). 18 + ''; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ AndersonTorres ]; 21 + }; 22 + 23 + passthru.updateScript = bundlerUpdateScript pname; 24 + }
+12
pkgs/tools/text/pru/gemset.nix
··· 1 + { 2 + pru = { 3 + groups = ["default"]; 4 + platforms = []; 5 + source = { 6 + remotes = ["https://rubygems.org"]; 7 + sha256 = "1imavf7wlbdfxvkrf838pp3cyfib0r7nzv0chnhyxagy1kk969r2"; 8 + type = "gem"; 9 + }; 10 + version = "0.2.1"; 11 + }; 12 + }
+2
pkgs/top-level/all-packages.nix
··· 19504 19504 buildPythonApplication click future six; 19505 19505 }; 19506 19506 19507 + pru = callPackage ../tools/text/pru { }; 19508 + 19507 19509 prospector = callPackage ../development/tools/prospector { }; 19508 19510 19509 19511 protobuf = protobuf3_19;