about summary refs log tree commit diff
path: root/pkgs/tools/networking/fdm/default.nix
blob: 0061620b58d1a3448215428499cfb6c834ea25dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ stdenv, fetchurl
  , openssl, tdb, zlib, flex, bison
  }:
let 
  buildInputs = [ openssl tdb zlib flex bison ];
  sourceInfo = rec {
    baseName="fdm";
    version = "1.8";
    name="${baseName}-${version}";
    url="mirror://sourceforge/${baseName}/${baseName}/${name}.tar.gz";
    sha256 = "0hi39f31ipv8f9wxb41pajvl61w6vaapl39wq8v1kl9c7q6h0k2g";
  };
in
stdenv.mkDerivation {
  src = fetchurl {
    inherit (sourceInfo) url sha256;
  };

  inherit (sourceInfo) name version;
  inherit buildInputs;

  preBuild = ''
    export makeFlags="$makeFlags PREFIX=$out"
    export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -Dbool=int"

    sed -i */Makefile -i Makefile -e 's@ -g bin @ @'
    sed -i */Makefile -i Makefile -e 's@ -o root @ @'
    sed -i GNUmakefile -e 's@ -g $(BIN_OWNER) @ @'
    sed -i GNUmakefile -e 's@ -o $(BIN_GROUP) @ @'
    sed -i */Makefile -i Makefile -i GNUmakefile -e 's@-I-@@g'
  '';
      
  meta = {
    description = "Mail fetching and delivery tool - should do the job of getmail and procmail";
    maintainers = with stdenv.lib.maintainers;
    [
      raskin
    ];
    platforms = with stdenv.lib.platforms;
      linux;
    homepage = http://fdm.sourceforge.net/;
    inherit (sourceInfo) version;
    updateWalker = true;
  };
}