nixpkgs/pkgs/servers/sql/postgresql/9.3.x.nix

45 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, readline, libossp_uuid }:
2014-01-18 15:17:29 +00:00
with stdenv.lib;
let version = "9.3.5"; in
2014-01-18 15:17:29 +00:00
stdenv.mkDerivation rec {
name = "postgresql-${version}";
src = fetchurl {
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
sha256 = "14176ffb1f90a189e7626214365be08ea2bfc26f26994bafb4235be314b9b4b0";
2014-01-18 15:17:29 +00:00
};
buildInputs = [ zlib readline ] ++ optionals (!stdenv.isDarwin) [ libossp_uuid ];
2014-01-18 15:17:29 +00:00
enableParallelBuilding = true;
makeFlags = [ "world" ];
configureFlags = optional (!stdenv.isDarwin)
''
--with-ossp-uuid
'';
patches = [ ./disable-resolve_symlinks.patch ./less-is-more.patch ];
2014-01-18 15:17:29 +00:00
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";
2014-09-04 19:38:12 +01:00
license = stdenv.lib.licenses.postgresql;
maintainers = [ stdenv.lib.maintainers.ocharles ];
hydraPlatforms = stdenv.lib.platforms.linux;
2014-01-18 15:17:29 +00:00
};
}