mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
23 lines
756 B
Nix
23 lines
756 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|