1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/networking/mailreaders/notmuch/default.nix
Florian Friesdorf 5c73dfdc1a notmuch: newer crypto patches - still failing tests, but mostly usable
svn path=/nixpkgs/trunk/; revision=26879
2011-04-18 17:19:48 +00:00

82 lines
3 KiB
Nix

{ fetchgit, stdenv, bash, emacs, glib, gmime, gnupg1, pkgconfig, talloc, xapian }:
stdenv.mkDerivation rec {
name = "notmuch-0.5-cfl3";
src = fetchgit {
url = "git://github.com/chaoflow/notmuch";
rev = "cfl3";
sha256 = "d142cc1cff4c810b22b9c7b8c831bb25e7076e7d74089120d1ad6ccb0a95159c";
};
buildInputs = [ bash emacs glib gmime gnupg1 pkgconfig talloc xapian ];
patchPhase = ''
substituteInPlace "test/author-order" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/basic" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/crypto" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/dump-restore" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/emacs" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/emacs-large-search-buffer" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/encoding" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/from-guessing" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/json" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/long-id" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/maildir-sync" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/new" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/notmuch-test" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/raw" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/reply" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/search" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/search-by-folder" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/search-insufficient-from-quoting" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/search-output" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/search-position-overlap-bug" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/test-lib.sh" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/test-verbose" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/thread-naming" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/thread-order" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
substituteInPlace "test/uuencode" \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
'';
postBuild = ''
make test
'';
meta = {
description = "Notmuch -- The mail indexer + inheritable-tags-hack + crypto";
longDescription = "";
license = "GPLv3";
maintainers = [ stdenv.lib.maintainers.chaoflow ];
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}