* Merged most of the stdenv-updates branch. Some stuff didn't

merge cleanly right away (kde-4, kernel stuff) so it should be
  merged later.  But the stdenv stuff is all there.

svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10793
This commit is contained in:
211 changed files with 1399 additions and 4020 deletions
+16
View File
@@ -0,0 +1,16 @@
args: with args;
stdenv.mkDerivation rec {
name = "wget-" + version;
src = fetchurl {
url = "mirror://gnu/wget/${name}.tar.bz2";
sha256 = "0mhd3181zdp1fwirxw0km7502sfvjmm1ncska9w6s2drczf37aix";
};
buildInputs = [gettext];
meta = {
description = "A console downloading program. Has some features for mirroring sites.";
homepage = http://www.gnu.org/software/wget;
};
}