pcre2: fetch src from HTTPS instead of FTP

Same change as in https://github.com/NixOS/nixpkgs/pull/44828, for the same reasons.
This commit is contained in:
Benjamin Hipple 2018-08-23 14:52:37 +00:00
parent 0d80f9659c
commit 4e65df60d9

View file

@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "pcre2-${version}";
version = "10.31";
src = fetchurl {
url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${name}.tar.bz2";
url = "https://ftp.pcre.org/pub/pcre/${name}.tar.bz2";
sha256 = "1b389pzw91k1hzydsh4smdsxyppwz4pv74m3nrvy8rda0j3m6zg0";
};