lol

Merge pull request #28233 from jpierre03/pr-aescrypt

aescrypt: use https to fetch archive

authored by

Frederik Rietdijk and committed by
GitHub
05212cd4 7ebcd39a

+2 -2
+2 -2
pkgs/tools/misc/aescrypt/default.nix
··· 5 5 name = "aescrypt-${version}"; 6 6 7 7 src = fetchurl { 8 - url = "http://www.aescrypt.com/download/v3/linux/${name}.tgz"; 8 + url = "https://www.aescrypt.com/download/v3/linux/${name}.tgz"; 9 9 sha256 = "1a1rs7xmbxh355qg3v02rln3gshvy3j6wkx4g9ir72l22mp6zkc7"; 10 10 }; 11 11 ··· 25 25 26 26 meta = with stdenv.lib; { 27 27 description = "Encrypt files with Advanced Encryption Standard (AES)"; 28 - homepage = http://www.aescrypt.com/; 28 + homepage = https://www.aescrypt.com/; 29 29 license = licenses.gpl2; 30 30 maintainers = with maintainers; [ lovek323 qknight ]; 31 31 platforms = stdenv.lib.platforms.all;