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

View File

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