2022-04-14 02:27:22 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromSourcehut
|
|
|
|
, ncurses
|
|
|
|
, notmuch
|
|
|
|
, scdoc
|
|
|
|
, python3
|
|
|
|
, w3m
|
|
|
|
, dante
|
2019-06-04 06:07:56 +00:00
|
|
|
}:
|
|
|
|
|
2020-06-07 11:06:05 +00:00
|
|
|
buildGoModule rec {
|
2019-06-04 06:07:56 +00:00
|
|
|
pname = "aerc";
|
2022-09-01 10:26:19 +00:00
|
|
|
version = "0.12.0";
|
2019-06-04 06:07:56 +00:00
|
|
|
|
2021-03-13 11:33:02 +00:00
|
|
|
src = fetchFromSourcehut {
|
2021-12-04 14:22:01 +00:00
|
|
|
owner = "~rjarry";
|
2021-03-13 11:33:02 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-09-01 10:26:19 +00:00
|
|
|
hash = "sha256-n5rRvLhCy2d8xUoTNyM5JYKGJWN0nEwkQeBCOpUrUrc=";
|
2019-06-04 06:07:56 +00:00
|
|
|
};
|
|
|
|
|
2022-01-01 05:05:03 +00:00
|
|
|
proxyVendor = true;
|
2022-09-01 10:26:19 +00:00
|
|
|
vendorHash = "sha256-Z1dW3cK3Anl8JpAfwppsSBRgV5SdRmQemOG+652z0KA=";
|
2020-02-01 11:50:10 +00:00
|
|
|
|
2020-08-04 00:26:27 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-06-04 06:07:56 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
scdoc
|
|
|
|
python3.pkgs.wrapPython
|
|
|
|
];
|
|
|
|
|
2019-10-28 14:40:31 +00:00
|
|
|
patches = [
|
|
|
|
./runtime-sharedir.patch
|
|
|
|
];
|
|
|
|
|
2022-02-24 14:46:51 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteAllInPlace config/aerc.conf
|
|
|
|
substituteAllInPlace config/config.go
|
|
|
|
substituteAllInPlace doc/aerc-config.5.scd
|
|
|
|
'';
|
|
|
|
|
2022-04-14 21:56:25 +00:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
2022-04-14 19:03:36 +00:00
|
|
|
|
2019-06-04 06:07:56 +00:00
|
|
|
pythonPath = [
|
|
|
|
python3.pkgs.colorama
|
|
|
|
];
|
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
buildInputs = [ python3 notmuch ];
|
2019-06-04 06:07:56 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
2022-04-14 21:56:25 +00:00
|
|
|
|
|
|
|
make $makeFlags GOFLAGS="$GOFLAGS -tags=notmuch" install
|
|
|
|
|
2019-06-04 06:07:56 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
2019-07-29 21:00:29 +00:00
|
|
|
wrapProgram $out/bin/aerc --prefix PATH ":" \
|
2021-01-15 05:42:41 +00:00
|
|
|
"$out/share/aerc/filters:${lib.makeBinPath [ ncurses ]}"
|
2019-06-04 06:07:56 +00:00
|
|
|
wrapProgram $out/share/aerc/filters/html --prefix PATH ":" \
|
2021-01-15 05:42:41 +00:00
|
|
|
${lib.makeBinPath [ w3m dante ]}
|
2019-06-04 06:07:56 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-26 04:08:40 +00:00
|
|
|
description = "An email client for your terminal";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://aerc-mail.org/";
|
2019-06-04 06:07:56 +00:00
|
|
|
maintainers = with maintainers; [ tadeokondrak ];
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2020-07-20 04:50:54 +00:00
|
|
|
}
|