postgresql: Update to latest versions

This commit is contained in:
Eelco Dolstra
2014-05-01 13:48:01 +02:00
parent d4e1bd4aa6
commit a986bbf4ba
5 changed files with 10 additions and 10 deletions

View File

@@ -2,14 +2,14 @@
with stdenv.lib;
let version = "9.3.3"; in
let version = "9.3.4"; in
stdenv.mkDerivation rec {
name = "postgresql-${version}";
src = fetchurl {
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
sha256 = "e925d8abe7157bd8bece6b7c0dd0c343d87a2b4336f85f4681ce596af99c3879";
sha256 = "9ee819574dfc8798a448dc23a99510d2d8924c2f8b49f8228cd77e4efc8a6621";
};
buildInputs = [ zlib readline ] ++ optionals (!stdenv.isDarwin) [ libossp_uuid ];