pkgconfig: add a http-only mirror

It seems we don't really need `fetchurlBoot` here ATM, but let's keep it.
https://github.com/NixOS/nixpkgs/issues/12816#issuecomment-185083205
This commit is contained in:
Vladimír Čunát 2016-02-17 08:47:47 +01:00
parent 0884b63e53
commit 2f3eae3a87

View file

@ -2,11 +2,14 @@
stdenv.mkDerivation (rec {
name = "pkg-config-0.29";
setupHook = ./setup-hook.sh;
src = fetchurl {
url = "http://pkgconfig.freedesktop.org/releases/${name}.tar.gz";
urls = [
"https://pkgconfig.freedesktop.org/releases/${name}.tar.gz"
"http://fossies.org/linux/misc/${name}.tar.gz"
];
sha256 = "0sq09a39wj4cxf8l2jvkq067g08ywfma4v6nhprnf351s82pfl68";
};