nixpkgs/pkgs/servers/sql/postgresql/9.2.x.nix
Oliver Charles 3f95f39bab postgresql: Build all versions on Hydra (Linux)
Additionally, add @ocharles to the list of maintainers.

I am only building these on Linux environments in Hydra for now, as
that's the only environment I can be a maintainer for.
2014-02-23 11:25:18 +01:00

38 lines
840 B
Nix

{ stdenv, fetchurl, zlib, readline }:
let version = "9.2.7"; in
stdenv.mkDerivation rec {
name = "postgresql-${version}";
src = fetchurl {
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
sha256 = "83c042c3f61c69b176d3e4344e59104f844bc8b8628dad2bb9022a64cf5afe86";
};
buildInputs = [ zlib readline ];
enableParallelBuilding = true;
makeFlags = [ "world" ];
patches = [ ./disable-resolve_symlinks.patch ];
installTargets = [ "install-world" ];
LC_ALL = "C";
passthru = {
inherit readline;
psqlSchema = "9.2";
};
meta = {
homepage = http://www.postgresql.org/;
description = "A powerful, open source object-relational database system";
license = "bsd";
maintainers = [ stdenv.lib.maintainers.ocharles ];
hydraPlatforms = stdenv.lib.platforms.linux;
};
}