mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +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.
34 lines
965 B
Nix
34 lines
965 B
Nix
{ lib, stdenv, perlPackages, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dkimproxy";
|
|
version = "1.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/dkimproxy/${pname}-${version}.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; [ CryptX Error MailDKIM MIMETools NetServer ];
|
|
|
|
meta = with lib; {
|
|
description = "SMTP-proxy that signs and/or verifies emails";
|
|
homepage = "https://dkimproxy.sourceforge.net/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.ekleog ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|