oxidized: use defaultGemConfig

stepbrobd.com 6874e741 b772b816

verified
+3 -47
+2 -47
pkgs/by-name/ox/oxidized/package.nix
··· 3 3 ruby, 4 4 bundlerApp, 5 5 bundlerUpdateScript, 6 + defaultGemConfig, 6 7 nixosTests, 7 - libssh2, 8 - pkg-config, 9 - openssl, 10 - cmake, 11 - libgit2, 12 - icu, 13 - which, 14 - file, 15 - zlib, 16 - libyaml, 17 8 }: 18 9 19 10 bundlerApp { ··· 27 18 "oxs" 28 19 ]; 29 20 30 - gemConfig = { 31 - rugged = attrs: { 32 - buildInputs = [ 33 - pkg-config 34 - cmake 35 - ]; 36 - nativeBuildInputs = [ 37 - pkg-config 38 - cmake 39 - ]; 40 - propagatedBuildInputs = [ 41 - libssh2 42 - openssl 43 - libgit2 44 - ]; 45 - 46 - dontUseCmakeConfigure = true; 47 - buildFlags = [ "--with-ssh" ]; 48 - }; 49 - 50 - charlock_holmes = attrs: { 51 - buildInputs = [ 52 - icu 53 - zlib 54 - ]; 55 - nativeBuildInputs = [ 56 - which 57 - pkg-config 58 - file 59 - ]; 60 - }; 61 - 62 - psych = attrs: { 63 - buildInputs = [ libyaml ]; 64 - nativeBuildInputs = [ pkg-config ]; 65 - }; 66 - }; 21 + gemConfig = defaultGemConfig; 67 22 68 23 passthru = { 69 24 tests = nixosTests.oxidized;
+1
pkgs/development/ruby-modules/gem-config/default.nix
··· 1039 1039 zlib 1040 1040 ]; 1041 1041 dontUseCmakeConfigure = true; 1042 + buildFlags = [ "--with-ssh" ]; 1042 1043 }; 1043 1044 1044 1045 sassc = attrs: {