Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d130a19c64e8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d074a5a07ee5
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 22, 2016

  1. Copy the full SHA
    8c88753 View commit details

Commits on Nov 23, 2016

  1. Merge pull request #20638 from LumiGuide/postgresql-updates

    postgresql: bug fix updates for all versions
    edolstra authored Nov 23, 2016
    Copy the full SHA
    d074a5a View commit details
Showing with 10 additions and 10 deletions.
  1. +10 −10 pkgs/servers/sql/postgresql/default.nix
20 changes: 10 additions & 10 deletions pkgs/servers/sql/postgresql/default.nix
Original file line number Diff line number Diff line change
@@ -83,33 +83,33 @@ let
in {

postgresql91 = common {
version = "9.1.23";
version = "9.1.24";
psqlSchema = "9.1";
sha256 = "1mgnfm65fspkq62skfy48rjkprnxcfhydw0x3ipp4sdkngl72x3z";
sha256 = "1lz5ibvgz6cxprxlnd7a8iwv387idr7k53bdsvy4bw9ayglq83fy";
};

postgresql92 = common {
version = "9.2.18";
version = "9.2.19";
psqlSchema = "9.2";
sha256 = "1x1mxbwqvgj9s4y8pb4vv6fmmr36z5zl3b2ggb84ckdfhvakganp";
sha256 = "1bfvx1h1baxp40y4xi88974p43vazz13mwc0h8scq3sr9wxdfa8x";
};

postgresql93 = common {
version = "9.3.14";
version = "9.3.15";
psqlSchema = "9.3";
sha256 = "1783kl0abf9az90mvs08pdh63d33cv2njc1q515zz89bqkqj4hsw";
sha256 = "0kswvs4rzcmjz12hhyi61w5x2wh4dxskar8v7rgajfm98qabmz59";
};

postgresql94 = common {
version = "9.4.9";
version = "9.4.10";
psqlSchema = "9.4";
sha256 = "1jg1l6vrfwhfyqrx07bgcpqxb5zcp8zwm8qd2vcj0k11j0pac861";
sha256 = "1kvfhalf3rs59887b5qa14zp85zcnsc6pislrs0wd08rxn5nfqbh";
};

postgresql95 = common {
version = "9.5.4";
version = "9.5.5";
psqlSchema = "9.5";
sha256 = "1l3fqxlpxgl6nrcd4h6lpi2hsiv56yg83n3xrn704rmdch8mfpng";
sha256 = "157kf6mdazmxfmd11f0akya2xcz6sfgprn7yqc26dpklps855ih2";
};

postgresql96 = common {