2015-12-10 03:07:23 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, git, gperf, pcre, unbound, libev, tokyocabinet, pkgconfig, bash, libsrs2 }:
|
|
|
|
|
|
|
|
let
|
|
|
|
version = "0.9";
|
|
|
|
|
|
|
|
pfixtoolsSrc = fetchFromGitHub {
|
|
|
|
owner = "Fruneau";
|
|
|
|
repo = "pfixtools";
|
|
|
|
rev = "pfixtools-${version}";
|
|
|
|
sha256 = "1vmbrw686f41n6xfjphfshn96vl07ynvnsyjdw9yfn9bfnldcjcq";
|
|
|
|
};
|
|
|
|
|
2017-06-26 18:10:37 +00:00
|
|
|
srcRoot = pfixtoolsSrc.name;
|
2015-12-10 03:07:23 +00:00
|
|
|
|
|
|
|
libCommonSrc = fetchFromGitHub {
|
|
|
|
owner = "Fruneau";
|
|
|
|
repo = "libcommon";
|
|
|
|
rev = "b07e6bdea3d24748e0d39783d7d817096d10cc67";
|
|
|
|
sha256 = "14fxldp29j4vmfmhfgwwi37pj8cz0flm1aykkxlbgakz92d4pm35";
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "pfixtools";
|
|
|
|
inherit version;
|
2015-12-10 03:07:23 +00:00
|
|
|
|
|
|
|
src = pfixtoolsSrc;
|
|
|
|
|
2017-03-03 09:21:32 +00:00
|
|
|
patches = [ ./0001-Fix-build-with-unbound-1.6.1.patch ];
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [git gperf pcre unbound libev tokyocabinet bash libsrs2];
|
2015-12-10 03:07:23 +00:00
|
|
|
|
|
|
|
postUnpack = ''
|
|
|
|
cp -Rp ${libCommonSrc}/* ${srcRoot}/common;
|
|
|
|
chmod -R +w ${srcRoot}/common;
|
|
|
|
'';
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace postlicyd/policy_tokens.sh \
|
|
|
|
--replace /bin/bash ${bash}/bin/bash;
|
|
|
|
'';
|
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=unused-result -Wno-error=nonnull-compare -Wno-error=format-truncation";
|
2016-08-03 20:13:49 +00:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
makeFlags = [ "DESTDIR=$(out)" "prefix=" ];
|
2015-12-10 03:07:23 +00:00
|
|
|
|
|
|
|
meta = {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "A collection of postfix-related tools";
|
2015-12-10 03:07:23 +00:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
homepage = https://github.com/Fruneau/pfixtools;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2017-09-04 16:50:50 +00:00
|
|
|
maintainers = with lib.maintainers; [ jerith666 ];
|
2015-12-10 03:07:23 +00:00
|
|
|
};
|
2016-08-02 17:50:55 +00:00
|
|
|
}
|