summary refs log tree commit diff
path: root/pkgs/tools/networking/mu/default.nix
blob: 7495c3bcd7f0b9000944f68c68675dee653abb74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ fetchurl, stdenv, sqlite, pkgconfig, xapian, glib, gmime, texinfo, emacs, guile }:

stdenv.mkDerivation rec {
  version = "0.9.9";
  name = "mu-${version}";

  src = fetchurl {
    url = "https://mu0.googlecode.com/files/mu-${version}.tar.gz";
    sha256 = "04r0y05awsyb5hqwaxn1hq9jxijw20hwsgdbacqrma519f0y5y43";
  };

  buildInputs = [ sqlite pkgconfig xapian glib gmime texinfo emacs guile ];

  meta = {
    description = "mu is a collection of utilties for indexing and searching Maildirs";

    licenses = [ "GPLv3+" ];

    homepage = "http://www.djcbsoftware.nl/code/mu/";

    platforms = stdenv.lib.platforms.all;

    maintainers = [ stdenv.lib.maintainers.antono ];
  };
}