mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
74 lines
1.4 KiB
Nix
74 lines
1.4 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromSourcehut
|
|
, ncurses
|
|
, notmuch
|
|
, scdoc
|
|
, python3
|
|
, w3m
|
|
, dante
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "aerc";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~rjarry";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-w0h6BNuGwXV1CzyvXvsRs2MXHKLbK3EUaK4mKiuNBxc=";
|
|
};
|
|
|
|
proxyVendor = true;
|
|
vendorSha256 = "sha256-vw9lDIZMswh/vrF1g8FvZ/faN5jWWPwfgnm66EWaohw=";
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [
|
|
scdoc
|
|
python3.pkgs.wrapPython
|
|
];
|
|
|
|
patches = [
|
|
./runtime-sharedir.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteAllInPlace config/aerc.conf
|
|
substituteAllInPlace config/config.go
|
|
substituteAllInPlace doc/aerc-config.5.scd
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
pythonPath = [
|
|
python3.pkgs.colorama
|
|
];
|
|
|
|
buildInputs = [ python3 notmuch ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
make $makeFlags GOFLAGS="$GOFLAGS -tags=notmuch" install
|
|
|
|
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;
|
|
};
|
|
}
|