rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / mpack / default.nix
blob2c9bf4ff2d308516daac9e2998a3f6a3a282d3d3
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "mpack";
5   version = "1.6";
7   src = fetchurl {
8     url = "http://ftp.andrew.cmu.edu/pub/mpack/mpack-${version}.tar.gz";
9     sha256 = "0k590z96509k96zxmhv72gkwhrlf55jkmyqlzi72m61r7axhhh97";
10   };
12   patches = [ ./build-fix.patch ./sendmail-via-execvp.diff ];
14   postPatch = ''
15     for f in *.{c,man,pl,unix} ; do
16       substituteInPlace $f --replace /usr/tmp /tmp
17     done
19     # this just shuts up some warnings
20     for f in {decode,encode,part,unixos,unixpk,unixunpk,xmalloc}.c ; do
21       sed -i 'i#include <stdlib.h>' $f
22     done
23   '';
25   postInstall = ''
26     install -Dm644 -t $out/share/doc/mpack INSTALL README.*
27   '';
29   enableParallelBuilding = true;
31   meta = with lib; {
32     description = "Utilities for encoding and decoding binary files in MIME";
33     license = licenses.free;
34     platforms = platforms.linux;
35   };