6da2d89016
Configure postgresql-9.3 with support for the ossp-uuid module Conflicts: pkgs/servers/sql/postgresql/9.3.x.nix
42 lines
946 B
Nix
42 lines
946 B
Nix
{ stdenv, fetchurl, zlib, readline, libossp_uuid }:
|
|
|
|
let version = "9.3.3"; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "postgresql-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
|
sha256 = "e925d8abe7157bd8bece6b7c0dd0c343d87a2b4336f85f4681ce596af99c3879";
|
|
};
|
|
|
|
buildInputs = [ zlib readline libossp_uuid ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [ "world" ];
|
|
|
|
configureFlags =
|
|
''
|
|
--with-ossp-uuid
|
|
'';
|
|
|
|
patches = [ ./disable-resolve_symlinks.patch ./less-is-more.patch ];
|
|
|
|
installTargets = [ "install-world" ];
|
|
|
|
LC_ALL = "C";
|
|
|
|
passthru = {
|
|
inherit readline;
|
|
psqlSchema = "9.3";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|