Enable some features in gvpe

svn path=/nixpkgs/trunk/; revision=16915
This commit is contained in:
Michael Raskin 2009-09-01 21:00:34 +00:00
parent ef6a270501
commit 043fe38f80
2 changed files with 7 additions and 3 deletions

View File

@ -2,7 +2,7 @@ a :
let let
s = import ./src-for-default.nix; s = import ./src-for-default.nix;
buildInputs = with a; [ buildInputs = with a; [
openssl openssl gmp
]; ];
in in
rec { rec {
@ -10,7 +10,11 @@ rec {
inherit (s) name; inherit (s) name;
inherit buildInputs; inherit buildInputs;
configureFlags = []; configureFlags = [
"--enable-tcp"
"--enable-http-proxy"
"--enable-dns"
];
/* doConfigure should be removed if not needed */ /* doConfigure should be removed if not needed */
phaseNames = ["doConfigure" "doMakeInstall"]; phaseNames = ["doConfigure" "doMakeInstall"];

View File

@ -849,7 +849,7 @@ let
}; };
gvpe = builderDefsPackage ../tools/networking/gvpe { gvpe = builderDefsPackage ../tools/networking/gvpe {
inherit openssl; inherit openssl gmp;
}; };
gzip = useFromStdenv "gzip" gzip = useFromStdenv "gzip"