lol

travis: init at 1.8.2

+231
+3
pkgs/development/tools/misc/travis/Gemfile
··· 1 + source "https://rubygems.org" 2 + 3 + gem "travis"
+51
pkgs/development/tools/misc/travis/Gemfile.lock
··· 1 + GEM 2 + remote: https://rubygems.org/ 3 + specs: 4 + addressable (2.4.0) 5 + backports (3.6.8) 6 + ethon (0.8.1) 7 + ffi (>= 1.3.0) 8 + faraday (0.9.2) 9 + multipart-post (>= 1.2, < 3) 10 + faraday_middleware (0.10.0) 11 + faraday (>= 0.7.4, < 0.10) 12 + ffi (1.9.10) 13 + gh (0.14.0) 14 + addressable 15 + backports 16 + faraday (~> 0.8) 17 + multi_json (~> 1.0) 18 + net-http-persistent (>= 2.7) 19 + net-http-pipeline 20 + highline (1.7.8) 21 + json (1.8.3) 22 + launchy (2.4.3) 23 + addressable (~> 2.3) 24 + multi_json (1.11.2) 25 + multipart-post (2.0.0) 26 + net-http-persistent (2.9.4) 27 + net-http-pipeline (1.0.1) 28 + pusher-client (0.6.2) 29 + json 30 + websocket (~> 1.0) 31 + travis (1.8.2) 32 + backports 33 + faraday (~> 0.9) 34 + faraday_middleware (~> 0.9, >= 0.9.1) 35 + gh (~> 0.13) 36 + highline (~> 1.6) 37 + launchy (~> 2.1) 38 + pusher-client (~> 0.4) 39 + typhoeus (~> 0.6, >= 0.6.8) 40 + typhoeus (0.8.0) 41 + ethon (>= 0.8.0) 42 + websocket (1.2.2) 43 + 44 + PLATFORMS 45 + ruby 46 + 47 + DEPENDENCIES 48 + travis 49 + 50 + BUNDLED WITH 51 + 1.11.2
+29
pkgs/development/tools/misc/travis/default.nix
··· 1 + { stdenv, lib, bundlerEnv, ruby }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "travis-${version}"; 5 + version = env.gems.travis.version; 6 + 7 + env = bundlerEnv { 8 + inherit ruby; 9 + name = "${name}-gems"; 10 + gemset = ./gemset.nix; 11 + gemfile = ./Gemfile; 12 + lockfile = ./Gemfile.lock; 13 + }; 14 + 15 + phases = ["installPhase"]; 16 + 17 + installPhase = '' 18 + mkdir -p $out/bin 19 + ln -s ${env}/bin/travis $out/bin/travis 20 + ''; 21 + 22 + meta = with lib; { 23 + description = "CLI and Ruby client library for Travis CI"; 24 + homepage = https://github.com/travis-ci/travis.rb; 25 + license = licenses.mit; 26 + maintainers = with maintainers; [ zimbatm ]; 27 + platforms = ruby.meta.platforms; 28 + }; 29 + }
+146
pkgs/development/tools/misc/travis/gemset.nix
··· 1 + { 2 + addressable = { 3 + source = { 4 + remotes = ["https://rubygems.org"]; 5 + sha256 = "0mpn7sbjl477h56gmxsjqb89r5s3w7vx5af994ssgc3iamvgzgvs"; 6 + type = "gem"; 7 + }; 8 + version = "2.4.0"; 9 + }; 10 + backports = { 11 + source = { 12 + remotes = ["https://rubygems.org"]; 13 + sha256 = "1zcgqw7m7jb8n7b2jwla5cq0nw9wsgddxfmn0a9v89ihzd4i1a5k"; 14 + type = "gem"; 15 + }; 16 + version = "3.6.8"; 17 + }; 18 + ethon = { 19 + source = { 20 + remotes = ["https://rubygems.org"]; 21 + sha256 = "0afvvv4sxs330jhk4xz9kj6qgj70yvd4zsjnb9yvxhmaq49k8yij"; 22 + type = "gem"; 23 + }; 24 + version = "0.8.1"; 25 + }; 26 + faraday = { 27 + source = { 28 + remotes = ["https://rubygems.org"]; 29 + sha256 = "1kplqkpn2s2yl3lxdf6h7sfldqvkbkpxwwxhyk7mdhjplb5faqh6"; 30 + type = "gem"; 31 + }; 32 + version = "0.9.2"; 33 + }; 34 + faraday_middleware = { 35 + source = { 36 + remotes = ["https://rubygems.org"]; 37 + sha256 = "0nxia26xzy8i56qfyz1bg8dg9yb26swpgci8n5jry8mh4bnx5r5h"; 38 + type = "gem"; 39 + }; 40 + version = "0.10.0"; 41 + }; 42 + ffi = { 43 + source = { 44 + remotes = ["https://rubygems.org"]; 45 + sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj"; 46 + type = "gem"; 47 + }; 48 + version = "1.9.10"; 49 + }; 50 + gh = { 51 + source = { 52 + remotes = ["https://rubygems.org"]; 53 + sha256 = "0j7m6jmxzkxvnqgnhmci33a89qpaxxcrm55kk5vz4bcpply04hx2"; 54 + type = "gem"; 55 + }; 56 + version = "0.14.0"; 57 + }; 58 + highline = { 59 + source = { 60 + remotes = ["https://rubygems.org"]; 61 + sha256 = "1nf5lgdn6ni2lpfdn4gk3gi47fmnca2bdirabbjbz1fk9w4p8lkr"; 62 + type = "gem"; 63 + }; 64 + version = "1.7.8"; 65 + }; 66 + json = { 67 + source = { 68 + remotes = ["https://rubygems.org"]; 69 + sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; 70 + type = "gem"; 71 + }; 72 + version = "1.8.3"; 73 + }; 74 + launchy = { 75 + source = { 76 + remotes = ["https://rubygems.org"]; 77 + sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2"; 78 + type = "gem"; 79 + }; 80 + version = "2.4.3"; 81 + }; 82 + multi_json = { 83 + source = { 84 + remotes = ["https://rubygems.org"]; 85 + sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r"; 86 + type = "gem"; 87 + }; 88 + version = "1.11.2"; 89 + }; 90 + multipart-post = { 91 + source = { 92 + remotes = ["https://rubygems.org"]; 93 + sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; 94 + type = "gem"; 95 + }; 96 + version = "2.0.0"; 97 + }; 98 + net-http-persistent = { 99 + source = { 100 + remotes = ["https://rubygems.org"]; 101 + sha256 = "1y9fhaax0d9kkslyiqi1zys6cvpaqx9a0y0cywp24rpygwh4s9r4"; 102 + type = "gem"; 103 + }; 104 + version = "2.9.4"; 105 + }; 106 + net-http-pipeline = { 107 + source = { 108 + remotes = ["https://rubygems.org"]; 109 + sha256 = "0bxjy33yhxwsbnld8xj3zv64ibgfjn9rjpiqkyd5ipmz50pww8v9"; 110 + type = "gem"; 111 + }; 112 + version = "1.0.1"; 113 + }; 114 + pusher-client = { 115 + source = { 116 + remotes = ["https://rubygems.org"]; 117 + sha256 = "18ymxz34gmg7jff3h0nyzp5vdg5i06dbdxlrdl2nq4hf14qwj1f4"; 118 + type = "gem"; 119 + }; 120 + version = "0.6.2"; 121 + }; 122 + travis = { 123 + source = { 124 + remotes = ["https://rubygems.org"]; 125 + sha256 = "0ph83whzw5hjkp1kgbkjd2g0vi6kdr9sif6vxvxgjf186id43q0s"; 126 + type = "gem"; 127 + }; 128 + version = "1.8.2"; 129 + }; 130 + typhoeus = { 131 + source = { 132 + remotes = ["https://rubygems.org"]; 133 + sha256 = "03x3fxjsnhgayl4s96h0a9975awlvx2v9nmx2ba0cnliglyczdr8"; 134 + type = "gem"; 135 + }; 136 + version = "0.8.0"; 137 + }; 138 + websocket = { 139 + source = { 140 + remotes = ["https://rubygems.org"]; 141 + sha256 = "1frcsgj4f984db920xwapflqwgrwncw86c1rv94pp5gs2q1iaap4"; 142 + type = "gem"; 143 + }; 144 + version = "1.2.2"; 145 + }; 146 + }
+2
pkgs/top-level/all-packages.nix
··· 6248 6248 6249 6249 texi2html = callPackage ../development/tools/misc/texi2html { }; 6250 6250 6251 + travis = callPackage ../development/tools/misc/travis { }; 6252 + 6251 6253 tweak = callPackage ../applications/editors/tweak { }; 6252 6254 6253 6255 uhd = callPackage ../development/tools/misc/uhd { };