58 lines
1.5 KiB
Nix
58 lines
1.5 KiB
Nix
{ stdenv, fetchurl
|
|
, zlib, zlibSupport ? true
|
|
, openssl, opensslSupport ? true
|
|
, gdbm, gdbmSupport ? true
|
|
, ncurses, readline, cursesSupport ? false
|
|
, groff, docSupport ? false
|
|
, libyaml, yamlSupport ? true
|
|
}:
|
|
|
|
let
|
|
op = stdenv.lib.optional;
|
|
ops = stdenv.lib.optionals;
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = with passthru; "${majorVersion}.${minorVersion}-p${patchLevel}";
|
|
|
|
name = "ruby-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.ruby-lang.org/pub/ruby/1.9/${name}.tar.bz2";
|
|
sha256 = "1ymq5lhp3fz0j3cs65521aihcnivbfrn76in900ccxd0msgfmld9";
|
|
};
|
|
|
|
# Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
|
|
NROFF = "${groff}/bin/nroff";
|
|
|
|
buildInputs = (ops cursesSupport [ ncurses readline ] )
|
|
++ (op docSupport groff )
|
|
++ (op zlibSupport zlib)
|
|
++ (op opensslSupport openssl)
|
|
++ (op gdbmSupport gdbm)
|
|
++ (op yamlSupport libyaml);
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = ["--enable-shared" "--enable-pthread"];
|
|
|
|
installFlags = stdenv.lib.optionalString docSupport "install-doc";
|
|
# Bundler tries to create this directory
|
|
postInstall = "mkdir -pv $out/${passthru.gemPath}";
|
|
|
|
meta = {
|
|
license = "Ruby";
|
|
homepage = "http://www.ruby-lang.org/en/";
|
|
description = "The Ruby language";
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
|
|
passthru = rec {
|
|
majorVersion = "1.9";
|
|
minorVersion = "3";
|
|
patchLevel = "194";
|
|
libPath = "lib/ruby/${majorVersion}";
|
|
gemPath = "lib/ruby/gems/${majorVersion}";
|
|
};
|
|
}
|