uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
62
pkgs/tools/networking/mu/default.nix
Normal file
62
pkgs/tools/networking/mu/default.nix
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
{ lib, stdenv, fetchFromGitHub, sqlite, pkg-config, autoreconfHook, pmccabe
|
||||
, xapian, glib, gmime3, texinfo, emacs, guile
|
||||
, gtk3, webkitgtk, libsoup, icu
|
||||
, makeWrapper
|
||||
, withMug ? false
|
||||
, batchSize ? null }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mu";
|
||||
version = "1.6.11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "djcb";
|
||||
repo = "mu";
|
||||
rev = version;
|
||||
sha256 = "E/6+vEwYXk65/ZoAtUeTjvg56g6gz+Qtcaz0qwEru6c=";
|
||||
};
|
||||
|
||||
postPatch = lib.optionalString (batchSize != null) ''
|
||||
sed -i lib/mu-store.cc --regexp-extended \
|
||||
-e 's@(constexpr auto BatchSize).*@\1 = ${toString batchSize};@'
|
||||
'';
|
||||
|
||||
buildInputs = [
|
||||
sqlite xapian glib gmime3 texinfo emacs libsoup icu
|
||||
]
|
||||
# Workaround for https://github.com/djcb/mu/issues/1641
|
||||
++ lib.optional (!stdenv.isDarwin) guile
|
||||
++ lib.optionals withMug [ gtk3 webkitgtk ];
|
||||
|
||||
nativeBuildInputs = [ pkg-config autoreconfHook pmccabe makeWrapper ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
preBuild = ''
|
||||
# Fix mu4e-builddir (set it to $out)
|
||||
substituteInPlace mu4e/mu4e-meta.el.in \
|
||||
--replace "@abs_top_builddir@" "$out"
|
||||
'';
|
||||
|
||||
# Make sure included scripts can find their dependencies & optionally install mug
|
||||
postInstall = ''
|
||||
wrapProgram "$out/bin/mu" \
|
||||
--prefix LD_LIBRARY_PATH : "$out/lib" \
|
||||
--prefix GUILE_LOAD_PATH : "$out/share/guile/site/2.2"
|
||||
'' + lib.optionalString withMug ''
|
||||
for f in mug ; do
|
||||
install -m755 toys/$f/$f $out/bin/$f
|
||||
done
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A collection of utilties for indexing and searching Maildirs";
|
||||
license = licenses.gpl3Plus;
|
||||
homepage = "https://www.djcbsoftware.nl/code/mu/";
|
||||
changelog = "https://github.com/djcb/mu/releases/tag/${version}";
|
||||
maintainers = with maintainers; [ antono chvp peterhoeg ];
|
||||
platforms = platforms.mesaPlatforms;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue