Add optional yaml support to ruby
svn path=/nixpkgs/trunk/; revision=30536
This commit is contained in:
parent
68aaf3c843
commit
58fbba200c
@ -4,6 +4,7 @@
|
|||||||
, gdbm, gdbmSupport ? true
|
, gdbm, gdbmSupport ? true
|
||||||
, ncurses, readline, cursesSupport ? false
|
, ncurses, readline, cursesSupport ? false
|
||||||
, groff, docSupport ? false
|
, groff, docSupport ? false
|
||||||
|
, libyaml, yamlSupport ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -28,7 +29,8 @@ stdenv.mkDerivation rec {
|
|||||||
++ (op docSupport groff )
|
++ (op docSupport groff )
|
||||||
++ (op zlibSupport zlib)
|
++ (op zlibSupport zlib)
|
||||||
++ (op opensslSupport openssl)
|
++ (op opensslSupport openssl)
|
||||||
++ (op gdbmSupport gdbm);
|
++ (op gdbmSupport gdbm)
|
||||||
|
++ (op yamlSupport libyaml);
|
||||||
|
|
||||||
configureFlags = ["--enable-shared" "--enable-pthread"];
|
configureFlags = ["--enable-shared" "--enable-pthread"];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user