postgresqlPackages.pg_topn: 2.3.1 -> 2.4.0

+4 -4
+4 -4
pkgs/servers/sql/postgresql/ext/pg_topn.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pg_topn"; 5 - version = "2.3.1"; 5 + version = "2.4.0"; 6 6 7 7 buildInputs = [ postgresql ]; 8 8 ··· 10 10 owner = "citusdata"; 11 11 repo = "postgresql-topn"; 12 12 rev = "refs/tags/v${version}"; 13 - sha256 = "0ai07an90ywhk10q52hajgb33va5q76j7h8vj1r0rvq6dyii0wal"; 13 + sha256 = "1appxriw7h29kyhv3h6b338g5m2nz70q3mxasy4mjimqhbz1zyqs"; 14 14 }; 15 15 16 16 installPhase = '' ··· 24 24 meta = with lib; { 25 25 description = "Efficient querying of 'top values' for PostgreSQL"; 26 26 homepage = "https://github.com/citusdata/postgresql-topn"; 27 - changelog = "https://github.com/citusdata/postgresql-topn/blob/v${version}/CHANGELOG.md"; 27 + changelog = "https://github.com/citusdata/postgresql-topn/raw/v${version}/CHANGELOG.md"; 28 28 maintainers = with maintainers; [ thoughtpolice ]; 29 29 platforms = postgresql.meta.platforms; 30 - license = licenses.agpl3; 30 + license = licenses.agpl3Only; 31 31 }; 32 32 }