summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-10-24 16:36:03 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-10-24 16:36:03 +0000
commitcb823d1c08e4088a550134f9e247d1b3955c2deb (patch)
treed74c6b84cb3dffec463437b5f968f0ca9327f532 /pkgs/tools
parentf405ee266bf05bad91e522b74802a595c1c88c86 (diff)
downloadnixpkgs-cb823d1c08e4088a550134f9e247d1b3955c2deb.tar
nixpkgs-cb823d1c08e4088a550134f9e247d1b3955c2deb.tar.gz
nixpkgs-cb823d1c08e4088a550134f9e247d1b3955c2deb.tar.bz2
nixpkgs-cb823d1c08e4088a550134f9e247d1b3955c2deb.tar.lz
nixpkgs-cb823d1c08e4088a550134f9e247d1b3955c2deb.tar.xz
nixpkgs-cb823d1c08e4088a550134f9e247d1b3955c2deb.tar.zst
nixpkgs-cb823d1c08e4088a550134f9e247d1b3955c2deb.zip
Adding mu0, maildir utils.
svn path=/nixpkgs/trunk/; revision=29995
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/mu0/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/networking/mu0/default.nix b/pkgs/tools/networking/mu0/default.nix
new file mode 100644
index 00000000000..a772f237500
--- /dev/null
+++ b/pkgs/tools/networking/mu0/default.nix
@@ -0,0 +1,25 @@
+{ fetchurl, stdenv, sqlite, pkgconfig, xapian, glib, gmime }:
+
+stdenv.mkDerivation rec {
+  name = "mu0-0.9.7";
+
+  src = fetchurl {
+    url = http://mu0.googlecode.com/files/mu-0.9.7.tar.gz;
+    sha256 = "14nyn791ficyllj9idhiq3mncwnrg71lfxk126804dxba1l90r72";
+  };
+
+  buildInputs = [ sqlite pkgconfig xapian glib gmime ];
+
+  /* The tests don't pass */
+  doCheck = false;
+
+  meta = {
+    description = "mu is a collection of utilties for indexing and searching Maildirs";
+
+    licenses = [ "GPLv3+" ];
+
+    homepage = http://code.google.com/p/mu0/;
+
+    platforms = stdenv.lib.platforms.all;
+  };
+}