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

43 lines
962 B
Nix
Raw Normal View History

2015-03-23 18:41:55 +01:00
{ stdenv, fetchurl, zlib, readline, openssl }:
let version = "9.1.15"; in
stdenv.mkDerivation rec {
name = "postgresql-${version}";
src = fetchurl {
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
sha256 = "0pyyw0cy91z9wkqf8qzkwsy8cyjps0s94c9czz6mzhyd2npxxmk7";
};
2015-03-23 18:41:55 +01:00
buildInputs = [ zlib readline openssl ];
enableParallelBuilding = true;
LC_ALL = "C";
2015-03-23 18:41:55 +01:00
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";
};
2015-05-23 22:49:45 +02:00
meta = with stdenv.lib; {
homepage = http://www.postgresql.org/;
description = "A powerful, open source object-relational database system";
2015-05-23 22:49:45 +02:00
license = licenses.postgresql;
maintainers = with maintaiers; [ ocharles ];
platforms = platforms.unix;
hydraPlatforms = platforms.linux;
};
}