mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 18:12:46 +00:00
8cbe6b9ce4
This is a backwards compatible change; it mostly puts all the extensions for postgresql in a common directory to keep them isolated. It also moves a few things that /were not/ extensions out into other parts of the filesystem namespace; namely the postgresql_jdbc and psqlodbc libraries were moved under development/java-modules and development/libraries, respectively. Because these libraries use the libpq postgresql client drivers, they're less sensitive to underlying version changes anyway (since the protocol is relatively stable). No attributes were renamed or harmed in the creation of this patch. Signed-off-by: Austin Seipp <aseipp@pobox.com>
32 lines
1.1 KiB
Nix
32 lines
1.1 KiB
Nix
{ stdenv, lib, fetchFromGitHub, gcc, postgresql }:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "pg_similarity-1.0";
|
|
src = fetchFromGitHub {
|
|
owner = "eulerto";
|
|
repo = "pg_similarity";
|
|
rev = "be1a8b08c8716e59b89982557da9ea68cdf868c5";
|
|
sha256 = "1z4v4r2yccdr8kz3935fnk1bc5vj0qj0apscldyap4wxlyi89xim";
|
|
};
|
|
|
|
buildInputs = [ postgresql gcc ];
|
|
buildPhase = "USE_PGXS=1 make";
|
|
installPhase = ''
|
|
mkdir -p $out/bin # for buildEnv to setup proper symlinks
|
|
install -D pg_similarity.so -t $out/lib/
|
|
install -D ./{pg_similarity--unpackaged--1.0.sql,pg_similarity--1.0.sql,pg_similarity.control} -t $out/share/extension
|
|
'';
|
|
|
|
meta = {
|
|
description = ''
|
|
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).
|
|
'';
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with lib.maintainers; [ danbst ];
|
|
};
|
|
}
|