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: 6195a47d2594
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 102ad69a15f0
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 31, 2019

  1. pg_topn: 2.2.0 -> 2.2.2

    marsam committed Jan 31, 2019
    Copy the full SHA
    2981a7b View commit details

Commits on Feb 1, 2019

  1. Merge pull request #53860 from marsam/update-pg_topn

    pg_topn: 2.2.0 -> 2.2.2
    danbst authored Feb 1, 2019
    Copy the full SHA
    102ad69 View commit details
Showing with 4 additions and 5 deletions.
  1. +4 −5 pkgs/servers/sql/postgresql/ext/pg_topn.nix
9 changes: 4 additions & 5 deletions pkgs/servers/sql/postgresql/ext/pg_topn.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{ stdenv, fetchFromGitHub, postgresql, protobufc }:
{ stdenv, fetchFromGitHub, postgresql }:

stdenv.mkDerivation rec {
name = "pg_topn-${version}";
version = "2.2.0";
version = "2.2.2";

nativeBuildInputs = [ protobufc ];
buildInputs = [ postgresql ];

src = fetchFromGitHub {
owner = "citusdata";
repo = "postgresql-topn";
rev = "refs/tags/v${version}";
sha256 = "1i5fn517mdvzfhlcj7fh4z0iniynanshcn7kzhsq19sgci0g31fr";
sha256 = "1bh28nrxj06vc2cvlsxlwrwad5ff3lfj3kr5cnnggwjk2dhwbbjm";
};

installPhase = ''
@@ -24,7 +23,7 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "Efficient querying of 'top values' for PostgreSQL";
homepage = https://www.citusdata.com/;
homepage = https://github.com/citusdata/postgresql-topn;
maintainers = with maintainers; [ thoughtpolice ];
platforms = platforms.linux;
license = licenses.agpl3;