mu0 -> mu, version bump
This commit is contained in:
parent
4cd591fbf9
commit
2828729b9b
25
pkgs/tools/networking/mu/default.nix
Normal file
25
pkgs/tools/networking/mu/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
@ -1,25 +0,0 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -1052,8 +1052,6 @@ let
|
||||
|
||||
lzop = callPackage ../tools/compression/lzop { };
|
||||
|
||||
mu0 = callPackage ../tools/networking/mu0 { };
|
||||
|
||||
mailutils = callPackage ../tools/networking/mailutils {
|
||||
guile = guile_1_8;
|
||||
};
|
||||
@ -4574,6 +4572,8 @@ let
|
||||
|
||||
mtdev = callPackage ../development/libraries/mtdev { };
|
||||
|
||||
mu = callPackage ../tools/networking/mu { };
|
||||
|
||||
muparser = callPackage ../development/libraries/muparser { };
|
||||
|
||||
mygui = callPackage ../development/libraries/mygui {};
|
||||
|
Loading…
Reference in New Issue
Block a user