archiveopteryx: init at 3.2.0

This commit is contained in:
Hoang Xuan Phu 2015-12-20 15:38:21 +08:00
parent c5497a7608
commit b8bc82a459
3 changed files with 25 additions and 0 deletions

View file

@ -233,6 +233,7 @@
phausmann = "Philipp Hausmann <nix@314.ch>";
philandstuff = "Philip Potter <philip.g.potter@gmail.com>";
phreedom = "Evgeny Egorochkin <phreedom@yandex.ru>";
phunehehe = "Hoang Xuan Phu <phunehehe@gmail.com>";
pierron = "Nicolas B. Pierron <nixos@nbp.name>";
piotr = "Piotr Pietraszkiewicz <ppietrasa@gmail.com>";
pjbarnoy = "Perry Barnoy <pjbarnoy@gmail.com>";

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, openssl, perl, zlib }:
stdenv.mkDerivation rec {
version = "3.2.0";
name = "archiveopteryx-${version}";
src = fetchurl {
url = "http://archiveopteryx.org/download/${name}.tar.bz2";
sha256 = "0i0zg8di8nbh96qnyyr156ikwcsq1w9b2291bazm5whb351flmqx";
};
buildInputs = [ openssl perl zlib ];
installPhase = ''
INSTALLROOT=$out make install
mkdir $out/bin
ln --symbolic $out/usr/local/archiveopteryx/sbin/* $out/bin/
ln --symbolic $out/usr/local/archiveopteryx/bin/* $out/bin/
'';
meta = with stdenv.lib; {
homepage = http://archiveopteryx.org/;
description = "An advanced PostgreSQL-based IMAP/POP server";
license = licenses.postgresql;
maintainers = [ maintainers.phunehehe ];
};
}

View file

@ -9110,6 +9110,8 @@ let
apacheHttpdPackages_2_2 = apacheHttpdPackagesFor pkgs.apacheHttpd_2_2 pkgs.apacheHttpdPackages_2_2;
apacheHttpdPackages_2_4 = apacheHttpdPackagesFor pkgs.apacheHttpd_2_4 pkgs.apacheHttpdPackages_2_4;
archiveopteryx = callPackage ../servers/mail/archiveopteryx/default.nix { };
cadvisor = callPackage ../servers/monitoring/cadvisor { };
cassandra_1_2 = callPackage ../servers/nosql/cassandra/1.2.nix { };