forked from mirrors/nixpkgs
81666cca21
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
30 lines
866 B
Nix
30 lines
866 B
Nix
{ lib, stdenv, fetchurl, fetchpatch, ncurses, autoreconfHook, flex }:
|
|
let rev = "b17ea39dc17e5514f33b3f5c34ede92bd16e208c";
|
|
in stdenv.mkDerivation rec {
|
|
pname = "mmh";
|
|
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 = "1bqfxafw4l2y46pnsxgy4ji1xlyifzw01k1ykbsjj9p61q3nv6l6";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace sbr/Makefile.in \
|
|
--replace "ar " "${stdenv.cc.targetPrefix}ar "
|
|
'';
|
|
|
|
buildInputs = [ ncurses ];
|
|
nativeBuildInputs = [ autoreconfHook flex ];
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|