forked from mirrors/nixpkgs
76 lines
1.8 KiB
Nix
76 lines
1.8 KiB
Nix
{ stdenv, buildGoModule, fetchurl
|
|
, go, ncurses, notmuch, scdoc
|
|
, python3, perl, w3m, dante
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "aerc";
|
|
version = "0.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.sr.ht/~sircmpwn/aerc/archive/${version}.tar.gz";
|
|
sha256 = "05qy14k9wmyhsg1hiv4njfx1zn1m9lz4d1p50kc36v7pq0n4csfk";
|
|
};
|
|
|
|
libvterm = fetchFromGitHub {
|
|
owner = "ddevault";
|
|
repo = "go-libvterm";
|
|
rev = "b7d861da381071e5d3701e428528d1bfe276e78f";
|
|
sha256 = "06vv4pgx0i6hjdjcar4ch18hp9g6q6687mbgkvs8ymmbacyhp7s6";
|
|
};
|
|
|
|
vendorSha256 = "1rqn36510m0yb7k4bvq2hgirr3z8a2h5xa7cq5mb84xsmhvf0g69";
|
|
|
|
overrideModAttrs = (_: {
|
|
postBuild = ''
|
|
cp -r --reflink=auto ${libvterm}/libvterm vendor/github.com/ddevault/go-libvterm
|
|
cp -r --reflink=auto ${libvterm}/encoding vendor/github.com/ddevault/go-libvterm
|
|
'';
|
|
});
|
|
|
|
nativeBuildInputs = [
|
|
scdoc
|
|
python3.pkgs.wrapPython
|
|
];
|
|
|
|
patches = [
|
|
./runtime-sharedir.patch
|
|
];
|
|
|
|
pythonPath = [
|
|
python3.pkgs.colorama
|
|
];
|
|
|
|
buildInputs = [ python3 notmuch ];
|
|
|
|
GOFLAGS="-tags=notmuch";
|
|
|
|
buildPhase = "
|
|
runHook preBuild
|
|
# we use make instead of go build
|
|
runHook postBuild
|
|
";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
make PREFIX=$out install
|
|
wrapPythonProgramsIn $out/share/aerc/filters "$out $pythonPath"
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/aerc --prefix PATH ":" \
|
|
"$out/share/aerc/filters:${stdenv.lib.makeBinPath [ ncurses ]}"
|
|
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";
|
|
homepage = "https://aerc-mail.org/";
|
|
maintainers = with maintainers; [ tadeokondrak ];
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
} |