forked from mirrors/nixpkgs
postgresql: 9.1.15 -> 9.1.16
This commit is contained in:
parent
8c99f2e3d6
commit
be94d4bc25
|
@ -1,42 +1,10 @@
|
||||||
{ stdenv, fetchurl, zlib, readline, openssl }:
|
{ callPackage, fetchurl, ... } @ args:
|
||||||
|
|
||||||
let version = "9.1.15"; in
|
callPackage ./generic.nix (args // rec {
|
||||||
|
version = "9.1.16";
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "postgresql-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
url = "mirror://postgresql/source/v${version}/postgresql-${version}.tar.bz2";
|
||||||
sha256 = "0pyyw0cy91z9wkqf8qzkwsy8cyjps0s94c9czz6mzhyd2npxxmk7";
|
sha256 = "0mllj1r1648iwm0qj3cj9qxizhlyhqmz94iydnwhf48psvvy4r9b";
|
||||||
};
|
};
|
||||||
|
})
|
||||||
buildInputs = [ zlib readline openssl ];
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
LC_ALL = "C";
|
|
||||||
|
|
||||||
configureFlags = [ "--with-openssl" ];
|
|
||||||
|
|
||||||
patches = [ ./less-is-more.patch ];
|
|
||||||
|
|
||||||
postInstall =
|
|
||||||
''
|
|
||||||
mkdir -p $out/share/man
|
|
||||||
cp -rvd doc/src/sgml/man1 $out/share/man
|
|
||||||
'';
|
|
||||||
|
|
||||||
passthru = {
|
|
||||||
inherit readline;
|
|
||||||
psqlSchema = "9.1";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
homepage = http://www.postgresql.org/;
|
|
||||||
description = "A powerful, open source object-relational database system";
|
|
||||||
license = licenses.postgresql;
|
|
||||||
maintainers = with maintaiers; [ ocharles ];
|
|
||||||
platforms = platforms.unix;
|
|
||||||
hydraPlatforms = platforms.linux;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
|
@ -77,6 +77,8 @@ stdenv.mkDerivation rec {
|
||||||
(mkWith (optLibxml2 != null) "libxml" null)
|
(mkWith (optLibxml2 != null) "libxml" null)
|
||||||
(mkWith (optLibxslt != null) "libxslt" null)
|
(mkWith (optLibxslt != null) "libxslt" null)
|
||||||
(mkWith (optZlib != null) "zlib" null)
|
(mkWith (optZlib != null) "zlib" null)
|
||||||
|
] ++ optionals (versionAtLeast version "9.1.0") [
|
||||||
|
(mkWith false "selinux" null)
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in a new issue