mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
Merge pull request #11841 from phunehehe/archiveopteryx
add archiveopteryx 3.2.0
This commit is contained in:
commit
37d0947e0c
@ -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>";
|
||||
|
22
pkgs/servers/mail/archiveopteryx/default.nix
Normal file
22
pkgs/servers/mail/archiveopteryx/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user