mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #28233 from jpierre03/pr-aescrypt
aescrypt: use https to fetch archive
This commit is contained in:
commit
05212cd4d6
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
|
|||
name = "aescrypt-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.aescrypt.com/download/v3/linux/${name}.tgz";
|
||||
url = "https://www.aescrypt.com/download/v3/linux/${name}.tgz";
|
||||
sha256 = "1a1rs7xmbxh355qg3v02rln3gshvy3j6wkx4g9ir72l22mp6zkc7";
|
||||
};
|
||||
|
||||
|
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Encrypt files with Advanced Encryption Standard (AES)";
|
||||
homepage = http://www.aescrypt.com/;
|
||||
homepage = https://www.aescrypt.com/;
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ lovek323 qknight ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
|
|
Loading…
Reference in a new issue