nixpkgs/pkgs/servers/sql/postgresql/9.0.x.nix

30 lines
687 B
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, readline }:
2014-02-22 12:37:10 +01:00
let version = "9.0.16"; in
stdenv.mkDerivation rec {
name = "postgresql-${version}";
src = fetchurl {
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
2014-02-22 12:37:10 +01:00
sha256 = "900f6ab00fc36c94b17430e7cb22499708025da1e34d7a70aefaf9a875f0fabf";
};
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";
maintainers = [ stdenv.lib.maintainers.ocharles ];
hydraPlatforms = stdenv.lib.platforms.linux;
};
}