Merge pull request #25739 from pekhee/feature/fix_rainbox_gem_deps

ruby-modules gem-config: add rainbow

authored by Jörg Thalheim and committed by GitHub aa64d817 92964a2e

+14 -1
+14 -1
pkgs/development/ruby-modules/gem-config/default.nix
··· 21 , libiconv, postgresql, v8_3_16_14, clang, sqlite, zlib, imagemagick 22 , pkgconfig , ncurses, xapian_1_2_22, gpgme, utillinux, fetchpatch, tzdata, icu, libffi 23 , cmake, libssh2, openssl, mysql, darwin, git, perl, gecode_3, curl 24 - , libmsgpack, qt48, libsodium, snappy, libossp_uuid, lxc, libpcap 25 }@args: 26 27 let 28 v8 = v8_3_16_14; 29 in 30 31 { ··· 147 148 puma = attrs: { 149 buildInputs = [ openssl ]; 150 }; 151 152 rbnacl = spec: {
··· 21 , libiconv, postgresql, v8_3_16_14, clang, sqlite, zlib, imagemagick 22 , pkgconfig , ncurses, xapian_1_2_22, gpgme, utillinux, fetchpatch, tzdata, icu, libffi 23 , cmake, libssh2, openssl, mysql, darwin, git, perl, gecode_3, curl 24 + , libmsgpack, qt48, libsodium, snappy, libossp_uuid, lxc, libpcap, buildRubyGem 25 }@args: 26 27 let 28 v8 = v8_3_16_14; 29 + 30 + rainbow_rake = buildRubyGem { 31 + name = "rake"; 32 + gemName = "rake"; 33 + remotes = ["https://rubygems.org"]; 34 + sha256 = "01j8fc9bqjnrsxbppncai05h43315vmz9fwg28qdsgcjw9ck1d7n"; 35 + type = "gem"; 36 + version = "12.0.0"; 37 + }; 38 in 39 40 { ··· 156 157 puma = attrs: { 158 buildInputs = [ openssl ]; 159 + }; 160 + 161 + rainbow = attrs: { 162 + buildInputs = [ rainbow_rake ]; 163 }; 164 165 rbnacl = spec: {