1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-16 07:48:58 +00:00

mu: update to 0.9.9.5

Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
This commit is contained in:
Moritz Ulrich 2013-10-01 23:47:57 +02:00
parent f145cc2784
commit 62ea4e1d38

View file

@ -1,25 +1,21 @@
{ fetchurl, stdenv, sqlite, pkgconfig, xapian, glib, gmime, texinfo, emacs, guile }:
stdenv.mkDerivation rec {
version = "0.9.9";
version = "0.9.9.5";
name = "mu-${version}";
src = fetchurl {
url = "https://mu0.googlecode.com/files/mu-${version}.tar.gz";
sha256 = "04r0y05awsyb5hqwaxn1hq9jxijw20hwsgdbacqrma519f0y5y43";
sha256 = "1hwkliyb8fjrz5sw9fcisssig0jkdxzhccw0ld0l9a10q1l9mqhp";
};
buildInputs = [ sqlite pkgconfig xapian glib gmime texinfo emacs guile ];
meta = {
description = "mu is a collection of utilties for indexing and searching Maildirs";
licenses = [ "GPLv3+" ];
description = "A collection of utilties for indexing and searching Maildirs";
license = "GPLv3+";
homepage = "http://www.djcbsoftware.nl/code/mu/";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.antono ];
maintainers = with stdenv.lib.maintainers; [ antono the-kenny ];
};
}