forked from mirrors/nixpkgs
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
37 lines
980 B
Nix
37 lines
980 B
Nix
{ lib, stdenv, perlPackages, fetchurl }:
|
|
|
|
let
|
|
pkg = "dkimproxy";
|
|
version = "1.4.1";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "${pkg}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/dkimproxy/${name}.tar.gz";
|
|
sha256 = "1gc5c7lg2qrlck7b0lvjfqr824ch6jkrzkpsn0gjvlzg7hfmld75";
|
|
};
|
|
|
|
# Idea taken from pkgs/development/perl-modules/generic/builder.sh
|
|
preFixup = ''
|
|
perlFlags=
|
|
for i in $(IFS=:; echo $PERL5LIB); do
|
|
perlFlags="$perlFlags -I$i"
|
|
done
|
|
for f in $(ls $out/bin); do
|
|
sed -i $out/bin/$f -e "s|#\!\(.*/perl.*\)$|#\! \1 $perlFlags|"
|
|
done
|
|
'';
|
|
|
|
buildInputs = [ perlPackages.perl ];
|
|
propagatedBuildInputs = with perlPackages; [ Error MailDKIM MIMETools NetServer ];
|
|
|
|
meta = with lib; {
|
|
description = "SMTP-proxy that signs and/or verifies emails";
|
|
homepage = "http://dkimproxy.sourceforge.net/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.ekleog ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|