parent
eb269336f1
commit
e3ab9804ba
|
@ -1,10 +1,42 @@
|
||||||
{ callPackage, fetchurl, ... } @ args:
|
{ stdenv, fetchurl, zlib, readline, openssl }:
|
||||||
|
|
||||||
callPackage ./generic.nix (args // rec {
|
let version = "9.1.15"; in
|
||||||
version = "9.1.16";
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "postgresql-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://postgresql/source/v${version}/postgresql-${version}.tar.bz2";
|
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
||||||
sha256 = "0mllj1r1648iwm0qj3cj9qxizhlyhqmz94iydnwhf48psvvy4r9b";
|
sha256 = "0pyyw0cy91z9wkqf8qzkwsy8cyjps0s94c9czz6mzhyd2npxxmk7";
|
||||||
};
|
};
|
||||||
})
|
|
||||||
|
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,8 +77,6 @@ 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 New Issue