1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-21 21:54:10 +00:00
nixpkgs/pkgs/servers/mail/archiveopteryx/default.nix

29 lines
840 B
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";
name = "archiveopteryx-${version}";
2015-12-20 07:38:21 +00:00
src = fetchurl {
url = "http://archiveopteryx.org/download/${name}.tar.bz2";
sha256 = "0i0zg8di8nbh96qnyyr156ikwcsq1w9b2291bazm5whb351flmqx";
};
nativeBuildInputs = [ jam ];
2015-12-20 07:38:21 +00:00
buildInputs = [ openssl perl zlib ];
preConfigure = ''export PREFIX="$out" '';
buildPhase = ''jam "-j$NIX_BUILD_CORES" '';
2015-12-20 07:38:21 +00:00
installPhase = ''
jam install
mkdir -p "$out/share/doc/archiveopteryx"
mv -t "$out/share/doc/archiveopteryx/" "$out"/{bsd.txt,COPYING,README}
2015-12-20 07:38:21 +00:00
'';
2015-12-20 07:38:21 +00:00
meta = with stdenv.lib; {
homepage = http://archiveopteryx.org/;
description = "An advanced PostgreSQL-based IMAP/POP server";
license = licenses.postgresql;
maintainers = [ maintainers.phunehehe ];
};
}