about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2020-03-14 14:20:44 -0400
committerGitHub <noreply@github.com>2020-03-14 14:20:44 -0400
commit2547ef92863f0fa7fe9073bd71047a66c4923e5d (patch)
treeb56c1c3b17cdb09dcd61e249d1b3e48c4f161f0a /pkgs/applications/networking
parent9d8580fe4c4ee5e23f09b58f5476a54d90bced13 (diff)
parentb1c71ebe2b6a195b70db9fbd55c7a4e4de69bc8b (diff)
downloadnixlib-2547ef92863f0fa7fe9073bd71047a66c4923e5d.tar
nixlib-2547ef92863f0fa7fe9073bd71047a66c4923e5d.tar.gz
nixlib-2547ef92863f0fa7fe9073bd71047a66c4923e5d.tar.bz2
nixlib-2547ef92863f0fa7fe9073bd71047a66c4923e5d.tar.lz
nixlib-2547ef92863f0fa7fe9073bd71047a66c4923e5d.tar.xz
nixlib-2547ef92863f0fa7fe9073bd71047a66c4923e5d.tar.zst
nixlib-2547ef92863f0fa7fe9073bd71047a66c4923e5d.zip
Merge pull request #75312 from KAction/mmh
mmh: init at 0.4
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/mailreaders/mmh/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/networking/mailreaders/mmh/default.nix b/pkgs/applications/networking/mailreaders/mmh/default.nix
new file mode 100644
index 000000000000..7d6254ed13cc
--- /dev/null
+++ b/pkgs/applications/networking/mailreaders/mmh/default.nix
@@ -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 ];
+  };
+}