commit
2547ef9286
3 changed files with 35 additions and 0 deletions
|
@ -3713,6 +3713,16 @@
|
|||
githubId = 66669;
|
||||
name = "Jeff Zellner";
|
||||
};
|
||||
kaction = {
|
||||
name = "Dmitry Bogatov";
|
||||
email = "KAction@disroot.org";
|
||||
github = "kaction";
|
||||
githubId = 44864956;
|
||||
key = [{
|
||||
longkeyid = "ed25519/0x749FD4DFA2E94236";
|
||||
fingerprint = "3F87 0A7C A7B4 3731 2F13 6083 749F D4DF A2E9 4236";
|
||||
}];
|
||||
};
|
||||
kaiha = {
|
||||
email = "kai.harries@gmail.com";
|
||||
github = "kaiha";
|
||||
|
|
24
pkgs/applications/networking/mailreaders/mmh/default.nix
Normal file
24
pkgs/applications/networking/mailreaders/mmh/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -20624,6 +20624,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;
|
||||
|
|
Loading…
Reference in a new issue