add an openssl mirror url as primary is currently down
svn path=/nixpkgs/branches/stdenv-updates/; revision=32578
This commit is contained in:
parent
e1c8ab095c
commit
be815e7639
1 changed files with 4 additions and 1 deletions
|
@ -32,7 +32,10 @@ stdenv.mkDerivation {
|
|||
inherit name;
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.openssl.org/source/${name}.tar.gz";
|
||||
urls = [
|
||||
"http://www.openssl.org/source/${name}.tar.gz"
|
||||
"http://openssl.linux-mirror.org/source/${name}.tar.gz"
|
||||
];
|
||||
sha1 = "2b517baada2338663c27314cb922f9755e73e07f";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue