treewide: remove package names from prefix of descriptions

This commit is contained in:
Ben Siraphob
2020-10-26 11:08:40 +07:00
committed by Jon
parent 7371c2cc9b
commit db74029e3e
139 changed files with 144 additions and 150 deletions

View File

@@ -18,7 +18,8 @@ stdenv.mkDerivation {
'';
meta = {
description = ''
description = "An extension to support similarity queries on PostgreSQL";
longDescription = ''
pg_similarity is an extension to support similarity queries on PostgreSQL. The implementation
is tightly integrated in the RDBMS in the sense that it defines operators so instead of the traditional
operators (= and <>) you can use ~~~ and ~!~ (any of these operators represents a similarity function).

View File

@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
description = "pgTAP is a unit testing framework for PostgreSQL";
description = "A unit testing framework for PostgreSQL";
longDescription = ''
pgTAP is a unit testing framework for PostgreSQL written in PL/pgSQL and PL/SQL.
It includes a comprehensive collection of TAP-emitting assertion functions,