mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, sqlite, pkgconfig, autoreconfHook, pmccabe
|
|
, xapian, glib, gmime3, texinfo , emacs, guile
|
|
, gtk3, webkitgtk, libsoup, icu
|
|
, withMug ? false }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mu";
|
|
version = "1.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "djcb";
|
|
repo = "mu";
|
|
rev = version;
|
|
sha256 = "0q2ik7fj5k9i76js4ijyxbgrwqff437lass0sd5if2r40rqh0as0";
|
|
};
|
|
|
|
buildInputs = [
|
|
sqlite xapian glib gmime3 texinfo emacs guile libsoup icu
|
|
] ++ stdenv.lib.optionals withMug [ gtk3 webkitgtk ];
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook pmccabe ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preBuild = ''
|
|
# Fix mu4e-builddir (set it to $out)
|
|
substituteInPlace mu4e/mu4e-meta.el.in \
|
|
--replace "@abs_top_builddir@" "$out"
|
|
'';
|
|
|
|
# Install mug
|
|
postInstall = stdenv.lib.optionalString withMug ''
|
|
for f in mug ; do
|
|
install -m755 toys/$f/$f $out/bin/$f
|
|
done
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A collection of utilties for indexing and searching Maildirs";
|
|
license = licenses.gpl3Plus;
|
|
homepage = "https://www.djcbsoftware.nl/code/mu/";
|
|
maintainers = with maintainers; [ antono the-kenny peterhoeg ];
|
|
platforms = platforms.mesaPlatforms;
|
|
};
|
|
}
|