mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
* added mutt (almost unusable so far, since no extra stuff is compiled in)
svn path=/nixpkgs/trunk/; revision=9052
This commit is contained in:
parent
2527df90cd
commit
d1f24e346f
1 changed files with 11 additions and 0 deletions
11
pkgs/applications/networking/mailreaders/mutt/default.nix
Normal file
11
pkgs/applications/networking/mailreaders/mutt/default.nix
Normal 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";
|
||||
}
|
Loading…
Reference in a new issue