summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-05-30 21:54:18 +0000
committerGitHub <noreply@github.com>2022-05-30 21:54:18 +0000
commitd244b4a9a2dcd2002f9a7fb29f5c6c558a321016 (patch)
tree66a07ccd2bd0290be601e1089d2e10d7a268c193 /pkgs/applications
parentd0e5e8877fc373311dd333c8a883d2f176265167 (diff)
parent81666cca21d1ded667eced1f00ea78478e007021 (diff)
downloadnixpkgs-d244b4a9a2dcd2002f9a7fb29f5c6c558a321016.tar
nixpkgs-d244b4a9a2dcd2002f9a7fb29f5c6c558a321016.tar.gz
nixpkgs-d244b4a9a2dcd2002f9a7fb29f5c6c558a321016.tar.bz2
nixpkgs-d244b4a9a2dcd2002f9a7fb29f5c6c558a321016.tar.lz
nixpkgs-d244b4a9a2dcd2002f9a7fb29f5c6c558a321016.tar.xz
nixpkgs-d244b4a9a2dcd2002f9a7fb29f5c6c558a321016.tar.zst
nixpkgs-d244b4a9a2dcd2002f9a7fb29f5c6c558a321016.zip
Merge pull request #173988 from trofi/fix-fno-common-for-mmh
mmh: unstable-2019-09-08 -> unstable-2020-08-21
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/mailreaders/mmh/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/mailreaders/mmh/default.nix b/pkgs/applications/networking/mailreaders/mmh/default.nix
index fe74e922230..50bbb0b0f66 100644
--- a/pkgs/applications/networking/mailreaders/mmh/default.nix
+++ b/pkgs/applications/networking/mailreaders/mmh/default.nix
@@ -1,13 +1,13 @@
-{ lib, stdenv, fetchurl, ncurses, autoreconfHook, flex }:
-let rev = "431604647f89d5aac7b199a7883e98e56e4ccf9e";
+{ lib, stdenv, fetchurl, fetchpatch, ncurses, autoreconfHook, flex }:
+let rev = "b17ea39dc17e5514f33b3f5c34ede92bd16e208c";
 in stdenv.mkDerivation rec {
   pname = "mmh";
-  version = "unstable-2019-09-08";
+  version = "unstable-2020-08-21";
 
   src = fetchurl {
     url = "http://git.marmaro.de/?p=mmh;a=snapshot;h=${rev};sf=tgz";
     name = "mmh-${rev}.tgz";
-    sha256 = "1q97p4g3f1q2m567i2dbx7mm7ixw3g91ww2rymwj42cxk9iyizhv";
+    sha256 = "1bqfxafw4l2y46pnsxgy4ji1xlyifzw01k1ykbsjj9p61q3nv6l6";
   };
 
   postPatch = ''