aerc: 0.15.2 -> 0.16.0

Changelog: https://git.sr.ht/~rjarry/aerc/refs/0.16.0
also enable doCheck. doCheck was set to false when the default value was
set to true. The tests work in this case, so I enabled them

+4 -5
+4 -5
pkgs/applications/networking/mailreaders/aerc/default.nix
··· 12 13 buildGoModule rec { 14 pname = "aerc"; 15 - version = "0.15.2"; 16 17 src = fetchFromSourcehut { 18 owner = "~rjarry"; 19 repo = "aerc"; 20 rev = version; 21 - hash = "sha256-OQDA4AHDcAdDzpwNSi8rW1FKjfYaFktOwiM0FEHPd70="; 22 }; 23 24 proxyVendor = true; 25 - vendorHash = "sha256-NWOySC0czNgNOakpxFguZLtmEI7AvjJQKXDE2vFWeZg="; 26 - 27 - doCheck = false; 28 29 nativeBuildInputs = [ 30 scdoc ··· 74 description = "An email client for your terminal"; 75 homepage = "https://aerc-mail.org/"; 76 maintainers = with maintainers; [ tadeokondrak ]; 77 license = licenses.mit; 78 platforms = platforms.unix; 79 };
··· 12 13 buildGoModule rec { 14 pname = "aerc"; 15 + version = "0.16.0"; 16 17 src = fetchFromSourcehut { 18 owner = "~rjarry"; 19 repo = "aerc"; 20 rev = version; 21 + hash = "sha256-vmr2U0bz6A7aMZZBtOitA5gKQpXKuNhYxRCmholHYa8="; 22 }; 23 24 proxyVendor = true; 25 + vendorHash = "sha256-j/wTmlVcyVI4gnjbi7KLzk5rdnZtZLrdSNbihtQJxRY="; 26 27 nativeBuildInputs = [ 28 scdoc ··· 72 description = "An email client for your terminal"; 73 homepage = "https://aerc-mail.org/"; 74 maintainers = with maintainers; [ tadeokondrak ]; 75 + mainProgram = "aerc"; 76 license = licenses.mit; 77 platforms = platforms.unix; 78 };