nixpkgs/pkgs/servers/mail/archiveopteryx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, openssl, perl, zlib, jam }:
2015-12-20 08:38:21 +01:00
stdenv.mkDerivation rec {
version = "3.2.0";
pname = "archiveopteryx";
2015-12-20 08:38:21 +01:00
src = fetchurl {
url = "http://archiveopteryx.org/download/${pname}-${version}.tar.bz2";
2015-12-20 08:38:21 +01:00
sha256 = "0i0zg8di8nbh96qnyyr156ikwcsq1w9b2291bazm5whb351flmqx";
};
nativeBuildInputs = [ jam ];
2015-12-20 08:38:21 +01:00
buildInputs = [ openssl perl zlib ];
preConfigure = ''
export INSTALLROOT=installroot
sed -i 's:BINDIR = $(PREFIX)/bin:BINDIR = '$out'/bin:' ./Jamsettings
sed -i 's:SBINDIR = $(PREFIX)/sbin:SBINDIR = '$out'/bin:' ./Jamsettings
sed -i 's:LIBDIR = $(PREFIX)/lib:LIBDIR = '$out'/lib:' ./Jamsettings
sed -i 's:MANDIR = $(PREFIX)/man:MANDIR = '$out'/share/man:' ./Jamsettings
sed -i 's:READMEDIR = $(PREFIX):READMEDIR = '$out'/share/doc/archiveopteryx:' ./Jamsettings
'';
2018-03-17 18:46:45 +01:00
# fix build on gcc7+ and gcc11+
env.NIX_CFLAGS_COMPILE = toString ([
"-std=c++11" # c++17+ has errors
2018-03-17 18:46:45 +01:00
"-Wno-error=builtin-declaration-mismatch"
2019-11-02 18:49:25 +01:00
"-Wno-error=deprecated-copy"
"-Wno-error=implicit-fallthrough"
"-Wno-error=nonnull"
] ++ lib.optionals (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "11") [
"-Wno-error=mismatched-new-delete"
]);
2018-03-17 18:46:45 +01:00
buildPhase = ''jam "-j$NIX_BUILD_CORES" '';
2015-12-20 08:38:21 +01:00
installPhase = ''
jam install
mv installroot/$out $out
2015-12-20 08:38:21 +01:00
'';
meta = with lib; {
homepage = "http://archiveopteryx.org/";
2015-12-20 08:38:21 +01:00
description = "An advanced PostgreSQL-based IMAP/POP server";
license = licenses.postgresql;
maintainers = [ maintainers.phunehehe ];
platforms = platforms.linux;
2015-12-20 08:38:21 +01:00
};
}