nixpkgs/pkgs/development/interpreters/ruby/default.nix
Marc Weber 79038a2038 build ruby with gdbm support
svn path=/nixpkgs/trunk/; revision=16789
2009-08-20 20:19:01 +00:00

38 lines
886 B
Nix

{stdenv, fetchurl, ncurses, readline
, lib
, zlib ? null
, openssl ? null
, gdbm ? null
, makeOverridable
}:
makeOverridable (stdenv.mkDerivation) rec {
version = "1.8.7-p72";
name = "ruby-${version}";
src = fetchurl {
url = "ftp://ftp.ruby-lang.org/pub/ruby/1.8/${name}.tar.gz";
sha256 = "e15ca005076f5d6f91fc856fdfbd071698a4cadac3c6e25855899dba1f6fc5ef";
};
buildInputs = [ncurses readline]
++(lib.optional (zlib != null) zlib)
++(lib.optional (openssl != null) openssl)
++(lib.optional (gdbm != null) gdbm)
;
configureFlags = ["--enable-shared" "--enable-pthread"] ;
# NIX_LDFLAGS = "-lpthread -lutil";
meta = {
license = "Ruby";
homepage = "http://www.ruby-lang.org/en/";
description = "The Ruby language";
};
passthru = {
# install ruby libs into "$out/${ruby.libPath}"
libPath = "lib/ruby-1.8";
};
}