mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Add mirror url for AMD microcode
www.amd64.org is often down, so provide a 2nd url to download from.
This commit is contained in:
parent
0782788051
commit
2a798997a3
1 changed files with 4 additions and 1 deletions
|
@ -5,7 +5,10 @@ stdenv.mkDerivation rec {
|
|||
name = "amd-ucode-2012-09-10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.amd64.org/pub/microcode/${name}.tar";
|
||||
urls =
|
||||
[ "http://www.amd64.org/pub/microcode/${name}.tar"
|
||||
"http://pkgs.fedoraproject.org/repo/pkgs/microcode_ctl/${name}.tar/559bc355d3799538584add80df2996f0/${name}.tar"
|
||||
];
|
||||
sha256 = "065phvhx5hx5ssdd1x2p5m1yv26ak7l5aaw6yk6h95x9mxn5r111";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue