38 lines
861 B
Nix
38 lines
861 B
Nix
{ stdenv, fetchurl, zlib, readline }:
|
|
|
|
let version = "9.2.8"; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "postgresql-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
|
sha256 = "568ba482340219097475cce9ab744766889692ee7c9df886563e8292d66ed87c";
|
|
};
|
|
|
|
buildInputs = [ zlib readline ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [ "world" ];
|
|
|
|
patches = [ ./disable-resolve_symlinks.patch ./less-is-more.patch ];
|
|
|
|
installTargets = [ "install-world" ];
|
|
|
|
LC_ALL = "C";
|
|
|
|
passthru = {
|
|
inherit readline;
|
|
psqlSchema = "9.2";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://www.postgresql.org/;
|
|
description = "A powerful, open source object-relational database system";
|
|
license = "bsd";
|
|
maintainers = [ stdenv.lib.maintainers.ocharles ];
|
|
hydraPlatforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|