36 lines
726 B
Nix
36 lines
726 B
Nix
{ stdenv, fetchurl, zlib, readline }:
|
|
|
|
let version = "9.1.10"; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "postgresql-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
|
sha256 = "8329bcd160fcb76ee8c79676f6c979a94069ca5c108449fbb365e1ea98f92b77";
|
|
};
|
|
|
|
buildInputs = [ zlib readline ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
LC_ALL = "C";
|
|
|
|
postInstall =
|
|
''
|
|
mkdir -p $out/share/man
|
|
cp -rvd doc/src/sgml/man1 $out/share/man
|
|
'';
|
|
|
|
passthru = {
|
|
inherit readline;
|
|
psqlSchema = "9.1";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://www.postgresql.org/;
|
|
description = "A powerful, open source object-relational database system";
|
|
license = "bsd";
|
|
};
|
|
}
|