* Another sync with the trunk.

svn path=/nixpkgs/branches/stdenv-updates/; revision=15269
This commit is contained in:
Eelco Dolstra
2009-04-23 11:59:43 +00:00
151 changed files with 4866 additions and 3182 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
+ " " + (if readline == null then "--without-readline" else "--with-readline")
+ " " + (if ssh == null then "--without-ssh" else "--with-ssh")
+ " " + (if pam == null then "--without-pam" else "--with-pam")
+ " " + (if rsh == null then "--without-rsh" else "--with-rsh")
+ " " + (if rsh == false then "--without-rsh" else "--with-rsh")
+ " --with-dshgroups"
+ " --with-xcpu"
+ " --without-genders"
+2 -2
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl, gettext}:
{stdenv, fetchurl, gettext, openssl ? null}:
stdenv.mkDerivation rec {
name = "wget-1.11.4";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "1yr7w182n7lvkajvq07wnw65sw2vmxjkc3611kpc728vhvi54zwb";
};
buildInputs = [gettext];
buildInputs = [gettext openssl];
meta = {
description = "A console downloading program. Has some features for mirroring sites.";