3
0
Fork 0
forked from mirrors/nixpkgs

kexec-tools: add mirror://kernel URI

From http://horms.net/projects/kexec/kexec-tools:

  "The canonical site for kexec-tools release is
   http://kernel.org/pub/linux/utils/kernel/kexec/. It should also be
   available on the extensive network of kernel.org mirror sites and
   it is mirrored at http://horms.net/projects/kexec/kexec-tools/
   just for good measure."
This commit is contained in:
Tobias Geerinckx-Rice 2015-11-09 17:56:57 +01:00
parent 7db3b90df6
commit ba527075af

View file

@ -5,7 +5,10 @@ stdenv.mkDerivation rec {
name = "kexec-tools-${version}";
src = fetchurl {
url = "http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz";
urls = [
"mirror://kernel/linux/utils/kernel/kexec/${name}.tar.xz"
"http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz"
];
sha256 = "18x134nj37j1rshn5hxbyhdcv9kk5sfshs72alkip1icf54l2gp2";
};