2021-03-13 11:33:02 +00:00
|
|
|
{ lib, buildGoModule, fetchFromSourcehut
|
2021-02-18 21:24:57 +00:00
|
|
|
, ncurses, notmuch, scdoc
|
|
|
|
, python3, w3m, dante
|
2019-06-04 07:07:56 +01:00
|
|
|
}:
|
|
|
|
|
2020-06-07 12:06:05 +01:00
|
|
|
buildGoModule rec {
|
2019-06-04 07:07:56 +01:00
|
|
|
pname = "aerc";
|
2021-12-04 14:22:01 +00:00
|
|
|
version = "0.6.0";
|
2019-06-04 07:07:56 +01: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;
|
2021-12-04 14:22:01 +00:00
|
|
|
sha256 = "sha256-RaHigTp1YGkjQ46gFLhKcJuajekcCgfozu0ndCNq5Ac=";
|
2019-06-04 07:07:56 +01:00
|
|
|
};
|
|
|
|
|
2022-01-01 05:05:03 +00:00
|
|
|
proxyVendor = true;
|
|
|
|
vendorSha256 = "sha256-ZFs2CXmNZpGae7bD15yTh3w6b00C7AgOwGuz72d2wHs=";
|
2020-02-01 11:50:10 +00:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-06-04 07:07:56 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
scdoc
|
|
|
|
python3.pkgs.wrapPython
|
|
|
|
];
|
|
|
|
|
2019-10-28 14:40:31 +00:00
|
|
|
patches = [
|
|
|
|
./runtime-sharedir.patch
|
|
|
|
];
|
|
|
|
|
2019-06-04 07:07:56 +01:00
|
|
|
pythonPath = [
|
|
|
|
python3.pkgs.colorama
|
|
|
|
];
|
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
buildInputs = [ python3 notmuch ];
|
2019-06-04 07:07:56 +01:00
|
|
|
|
|
|
|
buildPhase = "
|
|
|
|
runHook preBuild
|
|
|
|
# we use make instead of go build
|
|
|
|
runHook postBuild
|
|
|
|
";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
2020-07-20 05:50:54 +01:00
|
|
|
make PREFIX=$out GOFLAGS="$GOFLAGS -tags=notmuch" install
|
2019-06-04 07:07:56 +01:00
|
|
|
wrapPythonProgramsIn $out/share/aerc/filters "$out $pythonPath"
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
2019-07-29 22:00:29 +01: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 07:07:56 +01:00
|
|
|
wrapProgram $out/share/aerc/filters/html --prefix PATH ":" \
|
2021-01-15 05:42:41 +00:00
|
|
|
${lib.makeBinPath [ w3m dante ]}
|
2019-06-04 07:07:56 +01: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 02:11:51 +01:00
|
|
|
homepage = "https://aerc-mail.org/";
|
2019-06-04 07:07:56 +01:00
|
|
|
maintainers = with maintainers; [ tadeokondrak ];
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2020-07-20 05:50:54 +01:00
|
|
|
}
|