* added mutt (almost unusable so far, since no extra stuff is compiled in)

svn path=/nixpkgs/trunk/; revision=9052
This commit is contained in:
Andres Löh 2007-08-05 18:23:53 +00:00
parent 2527df90cd
commit d1f24e346f

View file

@ -0,0 +1,11 @@
{stdenv, fetchurl, ncurses, which}:
stdenv.mkDerivation {
name = "mutt-1.5.15";
src = fetchurl {
url = ftp://ftp.mutt.org/mutt/devel/mutt-1.5.15.tar.gz;
sha256 = "03fa1f45d4743cd395b634d19aebbc2c1918cf6b683e0af51076ccc79f643a9a";
};
buildInputs = [ ncurses which ];
configureFlags = "--with-mailpath=/invalid";
}