aboutsummaryrefslogtreecommitdiff
path: root/flakes/libspf2/default.nix
blob: a9e5ec35fb55218bd0ff696f437ba55dc989da9f (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
{ fetchpatch, file, fetchurl, libnsl, stdenv, lib }:
stdenv.mkDerivation rec {
  pname = "libspf2";
  version = "1.2.10";

  patches = [
    (fetchpatch {
      name = "fix-variadic-macros.patch";
      url = "https://git.archlinux.org/svntogit/community.git/plain/trunk/fix-variadic-macros.patch?h=packages/libspf2";
      sha256 = "00dqpcgjr9jy2qprgqv2qiyvq8y3wlz4yns9xzabf2064jzqh2ic";
    })
  ];
  preConfigure = ''
    sed -i -e "s@/usr/bin/file@${file}/bin/file@" ./configure
    '';
  configureFlags = [
    "--enable-static"
  ];
  postInstall = ''
    rm $out/bin/*_static
    '';
  src = fetchurl {
    url = "https://www.libspf2.org/spf/${pname}-${version}.tar.gz";
    sha256 = "1j91p0qiipzf89qxq4m1wqhdf01hpn1h5xj4djbs51z23bl3s7nr";
  };

  buildInputs = [ libnsl ];

  meta = {
    description = "Sender Policy Framework record checking library";
    homepage = "https://www.libspf2.org/";
    platforms = lib.platforms.linux;
  };
}