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
This commit is contained in:
parent
272dba1e31
commit
9508e4cb25
1 changed files with 4 additions and 5 deletions
|
@ -12,19 +12,17 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "aerc";
|
pname = "aerc";
|
||||||
version = "0.15.2";
|
version = "0.16.0";
|
||||||
|
|
||||||
src = fetchFromSourcehut {
|
src = fetchFromSourcehut {
|
||||||
owner = "~rjarry";
|
owner = "~rjarry";
|
||||||
repo = "aerc";
|
repo = "aerc";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-OQDA4AHDcAdDzpwNSi8rW1FKjfYaFktOwiM0FEHPd70=";
|
hash = "sha256-vmr2U0bz6A7aMZZBtOitA5gKQpXKuNhYxRCmholHYa8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
proxyVendor = true;
|
proxyVendor = true;
|
||||||
vendorHash = "sha256-NWOySC0czNgNOakpxFguZLtmEI7AvjJQKXDE2vFWeZg=";
|
vendorHash = "sha256-j/wTmlVcyVI4gnjbi7KLzk5rdnZtZLrdSNbihtQJxRY=";
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
scdoc
|
scdoc
|
||||||
|
@ -74,6 +72,7 @@ buildGoModule rec {
|
||||||
description = "An email client for your terminal";
|
description = "An email client for your terminal";
|
||||||
homepage = "https://aerc-mail.org/";
|
homepage = "https://aerc-mail.org/";
|
||||||
maintainers = with maintainers; [ tadeokondrak ];
|
maintainers = with maintainers; [ tadeokondrak ];
|
||||||
|
mainProgram = "aerc";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue