mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #5625 from j-keck/remove-pg94betas
postgresql: remove 9.4betaX
This commit is contained in:
commit
fd64740c33
3 changed files with 0 additions and 91 deletions
|
@ -1,44 +0,0 @@
|
|||
{ stdenv, fetchurl, zlib, readline, libossp_uuid }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
let version = "9.4beta2"; in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "postgresql-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
||||
sha256 = "131q3b9hv4pw02xhjsfi5is9i7pp5f4srxwfdn8ifs9qb37hcx2n";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib readline ] ++ optionals (!stdenv.isDarwin) [ libossp_uuid ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
makeFlags = [ "world" ];
|
||||
|
||||
configureFlags = optional (!stdenv.isDarwin)
|
||||
''
|
||||
--with-ossp-uuid
|
||||
'';
|
||||
|
||||
patches = [ ./disable-resolve_symlinks-94.patch ./less-is-more.patch ];
|
||||
|
||||
installTargets = [ "install-world" ];
|
||||
|
||||
LC_ALL = "C";
|
||||
|
||||
passthru = {
|
||||
inherit readline;
|
||||
psqlSchema = "9.4";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://www.postgresql.org/ ;
|
||||
description = "A powerful, open source object-relational database system";
|
||||
license = stdenv.lib.licenses.postgresql;
|
||||
maintainers = with stdenv.lib.maintainers; [ aristid ocharles ];
|
||||
hydraPlatforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -1,44 +0,0 @@
|
|||
{ stdenv, fetchurl, zlib, readline, libossp_uuid }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
let version = "9.4beta3"; in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "postgresql-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
||||
sha256 = "0pdawsmrzwgf2c4g18xlgzv6q34kd8q2p1nxag0xaw4sbdmdilas";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib readline ] ++ optionals (!stdenv.isDarwin) [ libossp_uuid ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
makeFlags = [ "world" ];
|
||||
|
||||
configureFlags = optional (!stdenv.isDarwin)
|
||||
''
|
||||
--with-ossp-uuid
|
||||
'';
|
||||
|
||||
patches = [ ./disable-resolve_symlinks-94.patch ./less-is-more.patch ];
|
||||
|
||||
installTargets = [ "install-world" ];
|
||||
|
||||
LC_ALL = "C";
|
||||
|
||||
passthru = {
|
||||
inherit readline;
|
||||
psqlSchema = "9.4";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://www.postgresql.org/ ;
|
||||
description = "A powerful, open source object-relational database system";
|
||||
license = stdenv.lib.licenses.postgresql;
|
||||
maintainers = with stdenv.lib.maintainers; [ aristid ocharles ];
|
||||
hydraPlatforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -7864,9 +7864,6 @@ let
|
|||
|
||||
postgresql93 = callPackage ../servers/sql/postgresql/9.3.x.nix { };
|
||||
|
||||
postgresql94beta2 = callPackage ../servers/sql/postgresql/9.4beta2.nix { };
|
||||
postgresql94beta3 = callPackage ../servers/sql/postgresql/9.4beta3.nix { };
|
||||
|
||||
postgresql94 = callPackage ../servers/sql/postgresql/9.4.x.nix { };
|
||||
|
||||
postgresql_jdbc = callPackage ../servers/sql/postgresql/jdbc { };
|
||||
|
|
Loading…
Reference in a new issue