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:
parent
0884b63e53
commit
2f3eae3a87
@ -2,11 +2,14 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation (rec {
|
stdenv.mkDerivation (rec {
|
||||||
name = "pkg-config-0.29";
|
name = "pkg-config-0.29";
|
||||||
|
|
||||||
setupHook = ./setup-hook.sh;
|
setupHook = ./setup-hook.sh;
|
||||||
|
|
||||||
src = fetchurl {
|
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";
|
sha256 = "0sq09a39wj4cxf8l2jvkq067g08ywfma4v6nhprnf351s82pfl68";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user