notmuch: cleanup
This commit is contained in:
parent
ada49ba736
commit
a35dae70c3
@ -1,4 +1,4 @@
|
|||||||
{ fetchurl, stdenv, fixDarwinDylibNames
|
{ fetchurl, stdenv
|
||||||
, pkgconfig, gnupg
|
, pkgconfig, gnupg
|
||||||
, xapian, gmime, talloc, zlib
|
, xapian, gmime, talloc, zlib
|
||||||
, doxygen, perl
|
, doxygen, perl
|
||||||
@ -34,18 +34,11 @@ stdenv.mkDerivation rec {
|
|||||||
bash-completion # (optional) dependency to install bash completion
|
bash-completion # (optional) dependency to install bash completion
|
||||||
emacs # (optional) to byte compile emacs code, also needed for tests
|
emacs # (optional) to byte compile emacs code, also needed for tests
|
||||||
ruby # (optional) ruby bindings
|
ruby # (optional) ruby bindings
|
||||||
which dtach openssl bash # test dependencies
|
];
|
||||||
]
|
|
||||||
++ optional stdenv.isDarwin fixDarwinDylibNames
|
|
||||||
++ optionals (!stdenv.isDarwin) [ gdb man ]; # test dependencies
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs configure
|
patchShebangs configure
|
||||||
|
patchShebangs test/
|
||||||
find test/ -type f -exec \
|
|
||||||
sed -i \
|
|
||||||
-e "1s|#!/usr/bin/env bash|#!${bash}/bin/bash|" \
|
|
||||||
"{}" ";"
|
|
||||||
|
|
||||||
for src in \
|
for src in \
|
||||||
util/crypto.c \
|
util/crypto.c \
|
||||||
@ -54,6 +47,9 @@ stdenv.mkDerivation rec {
|
|||||||
substituteInPlace "$src" \
|
substituteInPlace "$src" \
|
||||||
--replace \"gpg\" \"${gnupg}/bin/gpg\"
|
--replace \"gpg\" \"${gnupg}/bin/gpg\"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
substituteInPlace lib/Makefile.local \
|
||||||
|
--replace '-install_name $(libdir)' "-install_name $out/lib"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
configureFlags = [ "--zshcompletiondir=$(out)/share/zsh/site-functions" ];
|
configureFlags = [ "--zshcompletiondir=$(out)/share/zsh/site-functions" ];
|
||||||
@ -64,33 +60,6 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
makeFlags = "V=1";
|
makeFlags = "V=1";
|
||||||
|
|
||||||
preFixup = optionalString stdenv.isDarwin ''
|
|
||||||
set -e
|
|
||||||
|
|
||||||
die() {
|
|
||||||
>&2 echo "$@"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
prg="$out/bin/notmuch"
|
|
||||||
lib="$(find "$out/lib" -name 'libnotmuch.?.dylib')"
|
|
||||||
|
|
||||||
[[ -s "$prg" ]] || die "couldn't find notmuch binary"
|
|
||||||
[[ -s "$lib" ]] || die "couldn't find libnotmuch"
|
|
||||||
|
|
||||||
badname="$(otool -L "$prg" | awk '$1 ~ /libtalloc/ { print $1 }')"
|
|
||||||
goodname="$(find "${talloc}/lib" -name 'libtalloc.*.*.*.dylib')"
|
|
||||||
|
|
||||||
[[ -n "$badname" ]] || die "couldn't find libtalloc reference in binary"
|
|
||||||
[[ -n "$goodname" ]] || die "couldn't find libtalloc in nix store"
|
|
||||||
|
|
||||||
echo "fixing libtalloc link in $lib"
|
|
||||||
install_name_tool -change "$badname" "$goodname" "$lib"
|
|
||||||
|
|
||||||
echo "fixing libtalloc link in $prg"
|
|
||||||
install_name_tool -change "$badname" "$goodname" "$prg"
|
|
||||||
'';
|
|
||||||
|
|
||||||
preCheck = let
|
preCheck = let
|
||||||
test-database = fetchurl {
|
test-database = fetchurl {
|
||||||
url = "https://notmuchmail.org/releases/test-databases/database-v1.tar.xz";
|
url = "https://notmuchmail.org/releases/test-databases/database-v1.tar.xz";
|
||||||
@ -99,12 +68,14 @@ stdenv.mkDerivation rec {
|
|||||||
in ''
|
in ''
|
||||||
ln -s ${test-database} test/test-databases/database-v1.tar.xz
|
ln -s ${test-database} test/test-databases/database-v1.tar.xz
|
||||||
'';
|
'';
|
||||||
doCheck = !stdenv.isDarwin && (versionAtLeast gmime.version "3.0");
|
doCheck = !stdenv.hostPlatform.isDarwin && (versionAtLeast gmime.version "3.0");
|
||||||
checkTarget = "test V=1";
|
checkTarget = "test";
|
||||||
|
checkInputs = [
|
||||||
|
which dtach openssl bash
|
||||||
|
gdb man
|
||||||
|
];
|
||||||
|
|
||||||
postInstall = ''
|
installTargets = "install install-man";
|
||||||
make install-man
|
|
||||||
'';
|
|
||||||
|
|
||||||
dontGzipMan = true; # already compressed
|
dontGzipMan = true; # already compressed
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user