mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
571c71e6f7
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.
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, libbsd, openssl, libmilter
|
|
, autoreconfHook, perl, makeWrapper, unbound }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "opendkim";
|
|
version = "2.11.0-Beta2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "trusteddomainproject";
|
|
repo = "OpenDKIM";
|
|
rev = "rel-opendkim-${lib.replaceStrings ["."] ["-"] version}";
|
|
sha256 = "0nx3in8sa6xna4vfacj8g60hfzk61jpj2ldag80xzxip9c3rd2pw";
|
|
};
|
|
|
|
configureFlags= [
|
|
"--with-milter=${libmilter}"
|
|
"ac_cv_func_malloc_0_nonnull=yes"
|
|
"ac_cv_func_realloc_0_nonnull=yes"
|
|
] ++ lib.optional stdenv.hostPlatform.isDarwin "--with-unbound=${unbound}";
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config makeWrapper ];
|
|
|
|
buildInputs = [ libbsd openssl libmilter perl ] ++ lib.optional stdenv.hostPlatform.isDarwin unbound;
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/sbin/opendkim-genkey \
|
|
--prefix PATH : ${openssl.bin}/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "C library for producing DKIM-aware applications and an open source milter for providing DKIM service";
|
|
homepage = "http://www.opendkim.org/";
|
|
maintainers = with maintainers; [ abbradar ];
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|