mmh: unstable-2019-09-08 -> unstable-2020-08-21

Among other things update fixes build failure on upstream gcc-10:

    ld: mhparse.o:(.bss+0x0): multiple definition of `tmp'; mhbuild.o:(.bss+0x10): first defined here
This commit is contained in:
Sergei Trofimovich 2022-05-22 14:28:17 +01:00
parent e04ca59317
commit 81666cca21

View file

@ -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 = ''