4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
30 lines
854 B
Nix
30 lines
854 B
Nix
{ lib, 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";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|