tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
postgresqlPackages.pg_topn: 2.3.1 -> 2.4.0
Mario Rodas
4 years ago
cf698bfe
3a84bf77
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
servers
sql
postgresql
ext
pg_topn.nix
+4
-4
pkgs/servers/sql/postgresql/ext/pg_topn.nix
···
2
3
stdenv.mkDerivation rec {
4
pname = "pg_topn";
5
-
version = "2.3.1";
6
7
buildInputs = [ postgresql ];
8
···
10
owner = "citusdata";
11
repo = "postgresql-topn";
12
rev = "refs/tags/v${version}";
13
-
sha256 = "0ai07an90ywhk10q52hajgb33va5q76j7h8vj1r0rvq6dyii0wal";
14
};
15
16
installPhase = ''
···
24
meta = with lib; {
25
description = "Efficient querying of 'top values' for PostgreSQL";
26
homepage = "https://github.com/citusdata/postgresql-topn";
27
-
changelog = "https://github.com/citusdata/postgresql-topn/blob/v${version}/CHANGELOG.md";
28
maintainers = with maintainers; [ thoughtpolice ];
29
platforms = postgresql.meta.platforms;
30
-
license = licenses.agpl3;
31
};
32
}
···
2
3
stdenv.mkDerivation rec {
4
pname = "pg_topn";
5
+
version = "2.4.0";
6
7
buildInputs = [ postgresql ];
8
···
10
owner = "citusdata";
11
repo = "postgresql-topn";
12
rev = "refs/tags/v${version}";
13
+
sha256 = "1appxriw7h29kyhv3h6b338g5m2nz70q3mxasy4mjimqhbz1zyqs";
14
};
15
16
installPhase = ''
···
24
meta = with lib; {
25
description = "Efficient querying of 'top values' for PostgreSQL";
26
homepage = "https://github.com/citusdata/postgresql-topn";
27
+
changelog = "https://github.com/citusdata/postgresql-topn/raw/v${version}/CHANGELOG.md";
28
maintainers = with maintainers; [ thoughtpolice ];
29
platforms = postgresql.meta.platforms;
30
+
license = licenses.agpl3Only;
31
};
32
}