mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
38 lines
836 B
Nix
38 lines
836 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, graalvmCEPackages
|
|
, libyaml
|
|
, openssl
|
|
}:
|
|
|
|
graalvmCEPackages.buildGraalvmProduct {
|
|
src = fetchurl (import ./hashes.nix).hashes.${stdenv.system};
|
|
version = (import ./hashes.nix).version;
|
|
|
|
product = "truffleruby";
|
|
|
|
extraBuildInputs = [
|
|
libyaml
|
|
openssl
|
|
];
|
|
|
|
preFixup = lib.optionalString stdenv.isLinux ''
|
|
patchelf $out/lib/mri/openssl.so \
|
|
--replace-needed libssl.so.10 libssl.so \
|
|
--replace-needed libcrypto.so.10 libcrypto.so
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
echo "Testing TruffleRuby"
|
|
# Fixup/silence warnings about wrong locale
|
|
export LANG=C
|
|
export LC_ALL=C
|
|
$out/bin/ruby -e 'puts(1 + 1)'
|
|
${# broken in darwin with sandbox enabled
|
|
lib.optionalString stdenv.isLinux ''
|
|
echo '1 + 1' | $out/bin/irb
|
|
''}
|
|
'';
|
|
}
|