mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Add optional yaml support to ruby
svn path=/nixpkgs/trunk/; revision=30536
This commit is contained in:
parent
68aaf3c843
commit
58fbba200c
1 changed files with 3 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
|||
, gdbm, gdbmSupport ? true
|
||||
, ncurses, readline, cursesSupport ? false
|
||||
, groff, docSupport ? false
|
||||
, libyaml, yamlSupport ? false
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -28,7 +29,8 @@ stdenv.mkDerivation rec {
|
|||
++ (op docSupport groff )
|
||||
++ (op zlibSupport zlib)
|
||||
++ (op opensslSupport openssl)
|
||||
++ (op gdbmSupport gdbm);
|
||||
++ (op gdbmSupport gdbm)
|
||||
++ (op yamlSupport libyaml);
|
||||
|
||||
configureFlags = ["--enable-shared" "--enable-pthread"];
|
||||
|
||||
|
|
Loading…
Reference in a new issue