mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
postgresql: Add version 9.2
This commit is contained in:
parent
3fa853ec24
commit
bbffdd4702
35
pkgs/servers/sql/postgresql/9.2.x.nix
Normal file
35
pkgs/servers/sql/postgresql/9.2.x.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ stdenv, fetchurl, zlib, readline }:
|
||||
|
||||
let version = "9.2.2"; in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "postgresql-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
||||
sha256 = "1wzphj8vdqpzaihqmrkm9p4wlfvgr9psg5hnrmzwp5l8m5aai9z1";
|
||||
};
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
@ -5471,6 +5471,8 @@ let
|
||||
|
||||
postgresql91 = callPackage ../servers/sql/postgresql/9.1.x.nix { };
|
||||
|
||||
postgresql92 = callPackage ../servers/sql/postgresql/9.2.x.nix { };
|
||||
|
||||
postgresql_jdbc = callPackage ../servers/sql/postgresql/jdbc { };
|
||||
|
||||
psqlodbc = callPackage ../servers/sql/postgresql/psqlodbc {
|
||||
|
Loading…
Reference in New Issue
Block a user