Commit Graph

155 Commits

Author SHA1 Message Date
Michael Raskin
39685ab2d1 Added Savannah mirror list (source suggested by Ludovic Court\`es)
svn path=/nixpkgs/trunk/; revision=10509
2008-02-05 19:20:53 +00:00
Eelco Dolstra
cc1db9ac88 * mirror:// for Gentoo distfiles.
svn path=/nixpkgs/trunk/; revision=10174
2008-01-16 13:26:34 +00:00
Yury G. Kudryashov
53bd841c1b mirrors: sf: alias for sourceforge
svn path=/nixpkgs/trunk/; revision=9356
2007-09-22 19:59:31 +00:00
Eelco Dolstra
23f2a18677 * KDE 3.5.7.
* Mirror scheme "mirror://kde/".

svn path=/nixpkgs/trunk/; revision=9353
2007-09-21 13:07:25 +00:00
Eelco Dolstra
45a2c87402 * Support for mirror:// URLs a la Gentoo (NIXPKGS-70). Instead of
fetchurl {
      url = http://heanet.dl.sourceforge.net/sourceforge/zapping/zapping-0.9.6.tar.bz2;
      md5 = "8306775c6a11de4d72345b5eee970ea6";
    };

  you can write

    fetchurl {
      url = mirror://sourceforge/zapping/zapping-0.9.6.tar.bz2;
      md5 = "8306775c6a11de4d72345b5eee970ea6";
    };

  which causes fetchurl to try the SourceForge mirrors listed in the
  `sourceforge' attribute in build-support/fetchurl/mirrors.nix.
  (They're currently tried in sequence, and the lists of mirrors are
  not configurable yet.)

  The syntax for mirror URLs is mirror://site/path/to/file, where
  `site' is currently one of `sourceforge', `gnu' (mirrors of
  ftp://ftp.gnu.org/pub/gnu) and `kernel' (mirrors of
  http://www.all.kernel.org/pub/).

svn path=/nixpkgs/trunk/; revision=9197
2007-08-27 12:44:01 +00:00