mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
archiveopteryx: improve install paths, parallel build
This commit is contained in:
parent
5d03506df7
commit
39c43bc6e2
@ -1,18 +1,24 @@
|
||||
{ stdenv, fetchurl, openssl, perl, zlib }:
|
||||
{ stdenv, fetchurl, openssl, perl, zlib, jam }:
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.2.0";
|
||||
name = "archiveopteryx-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://archiveopteryx.org/download/${name}.tar.bz2";
|
||||
sha256 = "0i0zg8di8nbh96qnyyr156ikwcsq1w9b2291bazm5whb351flmqx";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ jam ];
|
||||
buildInputs = [ openssl perl zlib ];
|
||||
|
||||
preConfigure = ''export PREFIX="$out" '';
|
||||
buildPhase = ''jam "-j$NIX_BUILD_CORES" '';
|
||||
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/
|
||||
jam install
|
||||
mkdir -p "$out/share/doc/archiveopteryx"
|
||||
mv -t "$out/share/doc/archiveopteryx/" "$out"/{bsd.txt,COPYING,README}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://archiveopteryx.org/;
|
||||
description = "An advanced PostgreSQL-based IMAP/POP server";
|
||||
|
Loading…
Reference in New Issue
Block a user