libarchive: Add extra source URL (close #1655)

It seems that libarchive's home page has not been available for at least the
past couple of days.
This commit is contained in:
Ricardo M. Correia 2014-02-01 01:44:39 +01:00 committed by Vladimír Čunát
parent 79665ec9e2
commit 6d449f7c60

View file

@ -5,7 +5,10 @@ stdenv.mkDerivation rec {
name = "libarchive-3.1.2";
src = fetchurl {
url = "${meta.homepage}/downloads/${name}.tar.gz";
urls = [
"http://pkgs.fedoraproject.org/repo/pkgs/libarchive/libarchive-3.1.2.tar.gz/efad5a503f66329bb9d2f4308b5de98a/${name}.tar.gz"
"${meta.homepage}/downloads/${name}.tar.gz"
];
sha256 = "0pixqnrcf35dnqgv0lp7qlcw7k13620qkhgxr288v7p4iz6ym1zb";
};