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

44 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, perl, zlib, jam }:
2015-12-20 07:38:21 +00:00
stdenv.mkDerivation rec {
version = "3.2.0";
pname = "archiveopteryx";
2015-12-20 07:38:21 +00:00
src = fetchurl {
url = "http://archiveopteryx.org/download/${pname}-${version}.tar.bz2";
2015-12-20 07:38:21 +00:00
sha256 = "0i0zg8di8nbh96qnyyr156ikwcsq1w9b2291bazm5whb351flmqx";
};
nativeBuildInputs = [ jam ];
2015-12-20 07:38:21 +00: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 17:46:45 +00:00
2019-11-02 17:49:25 +00:00
# fix build on gcc7+
2019-10-30 00:40:49 +00:00
NIX_CFLAGS_COMPILE = builtins.toString [
2018-03-17 17:46:45 +00:00
"-Wno-error=builtin-declaration-mismatch"
"-Wno-error=implicit-fallthrough"
2019-11-02 17:49:25 +00:00
"-Wno-error=deprecated-copy"
2018-03-17 17:46:45 +00:00
];
buildPhase = ''jam "-j$NIX_BUILD_CORES" '';
2015-12-20 07:38:21 +00:00
installPhase = ''
jam install
mv installroot/$out $out
2015-12-20 07:38:21 +00:00
'';
2015-12-20 07:38:21 +00:00
meta = with stdenv.lib; {
homepage = "http://archiveopteryx.org/";
2015-12-20 07:38:21 +00:00
description = "An advanced PostgreSQL-based IMAP/POP server";
license = licenses.postgresql;
maintainers = [ maintainers.phunehehe ];
platforms = platforms.linux;
2015-12-20 07:38:21 +00:00
};
}