nixpkgs/pkgs/by-name/li/libmilter/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

50 lines
1.5 KiB
Nix

{ lib, stdenv, fetchurl, m4, fixDarwinDylibNames }:
stdenv.mkDerivation rec {
pname = "libmilter";
version = "8.18.1";
src = fetchurl {
url = "ftp://ftp.sendmail.org/pub/sendmail/sendmail.${version}.tar.gz";
sha256 = "sha256-y/HzCcOOSAb3zz6tJCYPF9H+j7YyVtE+2zzdGgmPB3A=";
};
buildPhase = ''
mkdir -p $out/lib
cd libmilter
cat > a.m4 <<EOF
define(\`confCC', \`$CC')
define(\`confAR', \`$AR')
define(\`confEBINDIR', \`$out/libexec')
define(\`confINCLUDEDIR', \`$out/include')
define(\`confLIBDIR', \`$out/lib')
define(\`confMANROOT', \`$out/man/cat')
define(\`confMANROOTMAN', \`$out/man/man')
define(\`confMBINDIR', \`$out/sbin')
define(\`confSBINDIR', \`$out/sbin')
define(\`confSHAREDLIBDIR', \`$out/lib')
define(\`confUBINDIR', \`$out/bin')
define(\`confINCGRP', \`root')
define(\`confLIBGRP', \`root')
APPENDDEF(\`confENVDEF', \`-DNETINET6')
EOF
export MILTER_SOVER=1
sh Build -f ./a.m4
'';
patches = [ ./install.patch ./sharedlib.patch ./darwin.patch ];
nativeBuildInputs = [ m4 ] ++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
fixDarwinDylibNames $out/lib/libmilter.*.1
'';
meta = with lib; {
description = "Sendmail Milter mail filtering API library";
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz ];
license = licenses.sendmail;
};
}