6d97096d8b
Calling /run/current-sw/bin/sendmail fails under postfix because setgid bits are not set. Switching the hardcoded path to an invocation via execvp should cover both cases, when the sendmail binary is setgid-wrapped and when it is not.
36 lines
868 B
Nix
36 lines
868 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mpack-1.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://ftp.andrew.cmu.edu/pub/mpack/${name}.tar.gz";
|
|
sha256 = "0k590z96509k96zxmhv72gkwhrlf55jkmyqlzi72m61r7axhhh97";
|
|
};
|
|
|
|
patches = [ ./build-fix.patch ./sendmail-via-execvp.diff ];
|
|
|
|
postPatch = ''
|
|
for f in *.{c,man,pl,unix} ; do
|
|
substituteInPlace $f --replace /usr/tmp /tmp
|
|
done
|
|
|
|
# this just shuts up some warnings
|
|
for f in {decode,encode,part,unixos,unixpk,unixunpk,xmalloc}.c ; do
|
|
sed -i 'i#include <stdlib.h>' $f
|
|
done
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm644 -t $out/share/doc/mpack INSTALL README.*
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Utilities for encoding and decoding binary files in MIME";
|
|
license = licenses.free;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|