xcpretty: init at 0.3.0 (#48494)

authored by Nick Novitski and committed by zimbatm.tngl.sh f2c07cd6 8ef639a5

+66
+1
pkgs/development/ruby-modules/bundler-app/default.nix
··· 29 29 , buildInputs ? [] 30 30 , postBuild ? "" 31 31 , gemConfig ? null 32 + , passthru ? {} 32 33 }@args: 33 34 34 35 let
+2
pkgs/development/tools/xcpretty/Gemfile
··· 1 + source 'https://rubygems.org' 2 + gem 'xcpretty'
+15
pkgs/development/tools/xcpretty/Gemfile.lock
··· 1 + GEM 2 + remote: https://rubygems.org/ 3 + specs: 4 + rouge (2.0.7) 5 + xcpretty (0.3.0) 6 + rouge (~> 2.0.7) 7 + 8 + PLATFORMS 9 + ruby 10 + 11 + DEPENDENCIES 12 + xcpretty 13 + 14 + BUNDLED WITH 15 + 1.16.4
+27
pkgs/development/tools/xcpretty/default.nix
··· 1 + { lib, bundlerApp, bundler, bundix }: 2 + 3 + bundlerApp { 4 + pname = "xcpretty"; 5 + gemdir = ./.; 6 + 7 + exes = [ "xcpretty" ]; 8 + 9 + passthru = { 10 + updateScript = '' 11 + set -e 12 + echo 13 + cd ${toString ./.} 14 + ${bundler}/bin/bundle lock --update 15 + ${bundix}/bin/bundix 16 + ''; 17 + }; 18 + 19 + meta = with lib; { 20 + description = "Flexible and fast xcodebuild formatter"; 21 + homepage = https://github.com/supermarin/xcpretty; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ 24 + nicknovitski 25 + ]; 26 + }; 27 + }
+19
pkgs/development/tools/xcpretty/gemset.nix
··· 1 + { 2 + rouge = { 3 + source = { 4 + remotes = ["https://rubygems.org"]; 5 + sha256 = "0sfikq1q8xyqqx690iiz7ybhzx87am4w50w8f2nq36l3asw4x89d"; 6 + type = "gem"; 7 + }; 8 + version = "2.0.7"; 9 + }; 10 + xcpretty = { 11 + dependencies = ["rouge"]; 12 + source = { 13 + remotes = ["https://rubygems.org"]; 14 + sha256 = "1xq47q2h5llj7b54rws4796904vnnjz7qqnacdv7wlp3gdbwrivm"; 15 + type = "gem"; 16 + }; 17 + version = "0.3.0"; 18 + }; 19 + }
+2
pkgs/top-level/all-packages.nix
··· 9077 9077 deps = [ xcbuild ]; 9078 9078 } ../development/tools/xcbuild/setup-hook.sh ; 9079 9079 9080 + xcpretty = callPackage ../development/tools/xcpretty { }; 9081 + 9080 9082 xmlindent = callPackage ../development/web/xmlindent {}; 9081 9083 9082 9084 xpwn = callPackage ../development/mobile/xpwn {};