2019-06-04 07:07:56 +01:00
|
|
|
{ stdenv, buildGoModule, fetchurl
|
2019-11-25 09:43:54 +00:00
|
|
|
, go, ncurses, notmuch, scdoc
|
2020-03-27 07:33:21 +00:00
|
|
|
, python3, perl, w3m, dante
|
2020-05-01 02:59:00 +01:00
|
|
|
, fetchFromGitHub
|
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";
|
2020-06-07 12:06:05 +01:00
|
|
|
version = "0.4.0";
|
2019-06-04 07:07:56 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-06-07 12:06:05 +01:00
|
|
|
url = "https://git.sr.ht/~sircmpwn/aerc/archive/${version}.tar.gz";
|
|
|
|
sha256 = "05qy14k9wmyhsg1hiv4njfx1zn1m9lz4d1p50kc36v7pq0n4csfk";
|
2019-06-04 07:07:56 +01:00
|
|
|
};
|
|
|
|
|
2020-07-22 17:34:48 +01:00
|
|
|
runVend = true;
|
2020-08-15 06:43:27 +01:00
|
|
|
vendorSha256 = "13zs5113ip85yl6sw9hzclxwlnrhy18d39vh9cwbq97dgnh9rz89";
|
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 ":" \
|
2019-11-25 09:43:54 +00:00
|
|
|
"$out/share/aerc/filters:${stdenv.lib.makeBinPath [ ncurses ]}"
|
2019-06-04 07:07:56 +01:00
|
|
|
wrapProgram $out/share/aerc/filters/html --prefix PATH ":" \
|
|
|
|
${stdenv.lib.makeBinPath [ w3m dante ]}
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "aerc is 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
|
|
|
}
|