forked from mirrors/nixpkgs
* Added PostgreSQL 9.0.1.
svn path=/nixpkgs/trunk/; revision=25106
This commit is contained in:
parent
f229a3df60
commit
975ec6c177
27
pkgs/servers/sql/postgresql/9.0.x.nix
Normal file
27
pkgs/servers/sql/postgresql/9.0.x.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchurl, zlib, readline }:
|
||||
|
||||
let version = "9.0.1"; in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "postgresql-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
||||
sha256 = "15iid8l7hgpa2zzdsd0msn0ps9qq1mxkzxx0fca5z117054ws42k";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib readline ];
|
||||
|
||||
LC_ALL = "C";
|
||||
|
||||
passthru = {
|
||||
inherit readline;
|
||||
psqlSchema = "9.0";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://www.postgresql.org/;
|
||||
description = "A powerful, open source object-relational database system";
|
||||
license = "bsd";
|
||||
};
|
||||
}
|
|
@ -4359,6 +4359,8 @@ let
|
|||
|
||||
postgresql84 = callPackage ../servers/sql/postgresql/8.4.x.nix { };
|
||||
|
||||
postgresql90 = callPackage ../servers/sql/postgresql/9.0.x.nix { };
|
||||
|
||||
postgresql_jdbc = callPackage ../servers/sql/postgresql/jdbc { };
|
||||
|
||||
pyIRCt = builderDefsPackage (import ../servers/xmpp/pyIRCt) {
|
||||
|
|
Loading…
Reference in a new issue