4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, openssl, perl, zlib, jam }:
|
|
stdenv.mkDerivation rec {
|
|
version = "3.2.0";
|
|
pname = "archiveopteryx";
|
|
|
|
src = fetchurl {
|
|
url = "http://archiveopteryx.org/download/${pname}-${version}.tar.bz2";
|
|
sha256 = "0i0zg8di8nbh96qnyyr156ikwcsq1w9b2291bazm5whb351flmqx";
|
|
};
|
|
|
|
nativeBuildInputs = [ jam ];
|
|
buildInputs = [ openssl perl zlib ];
|
|
|
|
preConfigure = ''
|
|
export INSTALLROOT=installroot
|
|
sed -i 's:BINDIR = $(PREFIX)/bin:BINDIR = '$out'/bin:' ./Jamsettings
|
|
sed -i 's:SBINDIR = $(PREFIX)/sbin:SBINDIR = '$out'/bin:' ./Jamsettings
|
|
sed -i 's:LIBDIR = $(PREFIX)/lib:LIBDIR = '$out'/lib:' ./Jamsettings
|
|
sed -i 's:MANDIR = $(PREFIX)/man:MANDIR = '$out'/share/man:' ./Jamsettings
|
|
sed -i 's:READMEDIR = $(PREFIX):READMEDIR = '$out'/share/doc/archiveopteryx:' ./Jamsettings
|
|
'';
|
|
|
|
# fix build on gcc7+
|
|
NIX_CFLAGS_COMPILE = builtins.toString [
|
|
"-Wno-error=builtin-declaration-mismatch"
|
|
"-Wno-error=implicit-fallthrough"
|
|
"-Wno-error=deprecated-copy"
|
|
];
|
|
|
|
buildPhase = ''jam "-j$NIX_BUILD_CORES" '';
|
|
installPhase = ''
|
|
jam install
|
|
mv installroot/$out $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://archiveopteryx.org/";
|
|
description = "An advanced PostgreSQL-based IMAP/POP server";
|
|
license = licenses.postgresql;
|
|
maintainers = [ maintainers.phunehehe ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|