64 lines
1.4 KiB
Nix
64 lines
1.4 KiB
Nix
{ lib, buildGoModule, fetchurl
|
|
, go, ncurses, notmuch, scdoc
|
|
, python3, perl, w3m, dante
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "aerc";
|
|
version = "0.5.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.sr.ht/~sircmpwn/aerc/archive/${version}.tar.gz";
|
|
sha256 = "h7kiRA5TuZ8mDSMymWU33stFLIOMd06TQLYzKW+faO4=";
|
|
};
|
|
|
|
runVend = true;
|
|
vendorSha256 = "9PXdUH0gu8PGaKlRJCUF15W1/LxA+sv3Pwl2UnjYxWY=";
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [
|
|
scdoc
|
|
python3.pkgs.wrapPython
|
|
];
|
|
|
|
patches = [
|
|
./runtime-sharedir.patch
|
|
];
|
|
|
|
pythonPath = [
|
|
python3.pkgs.colorama
|
|
];
|
|
|
|
buildInputs = [ python3 notmuch ];
|
|
|
|
buildPhase = "
|
|
runHook preBuild
|
|
# we use make instead of go build
|
|
runHook postBuild
|
|
";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
make PREFIX=$out GOFLAGS="$GOFLAGS -tags=notmuch" install
|
|
wrapPythonProgramsIn $out/share/aerc/filters "$out $pythonPath"
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/aerc --prefix PATH ":" \
|
|
"$out/share/aerc/filters:${lib.makeBinPath [ ncurses ]}"
|
|
wrapProgram $out/share/aerc/filters/html --prefix PATH ":" \
|
|
${lib.makeBinPath [ w3m dante ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An email client for your terminal";
|
|
homepage = "https://aerc-mail.org/";
|
|
maintainers = with maintainers; [ tadeokondrak ];
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|