Skip to content

Commit

Permalink
mmh-unstable: init at 2019-09-08
Browse files Browse the repository at this point in the history
  • Loading branch information
KAction committed Mar 14, 2020
1 parent 4481a20 commit b1c71eb
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/applications/networking/mailreaders/mmh/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ stdenv, fetchurl, ncurses, autoreconfHook, flex }:
let rev = "431604647f89d5aac7b199a7883e98e56e4ccf9e";
in stdenv.mkDerivation rec {
pname = "mmh-unstable";
version = "2019-09-08";

src = fetchurl {
url = "http://git.marmaro.de/?p=mmh;a=snapshot;h=${rev};sf=tgz";
name = "mmh-${rev}.tgz";
sha256 = "1q97p4g3f1q2m567i2dbx7mm7ixw3g91ww2rymwj42cxk9iyizhv";
};

buildInputs = [ ncurses ];
nativeBuildInputs = [ autoreconfHook flex ];

meta = with stdenv.lib; {
description = "Set of electronic mail handling programs";
homepage = "http://marmaro.de/prog/mmh";
license = licenses.bsd3;
platforms = platforms.unix;
broken = stdenv.isDarwin;
maintainers = with maintainers; [ kaction ];
};
}
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20588,6 +20588,7 @@ in
else
libsForQt5.callPackage ../applications/audio/musescore { };

mmh = callPackage ../applications/networking/mailreaders/mmh { };
mutt = callPackage ../applications/networking/mailreaders/mutt { };
mutt-with-sidebar = mutt.override {
withSidebar = true;
Expand Down

0 comments on commit b1c71eb

Please sign in to comment.