blob: e02e7aa2334bb245f00532c5eb7245eb97c5ef99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
fetchgit,
lib,
postgresql,
postgresqlBuildExtension,
}:
postgresqlBuildExtension {
pname = "smlar-unstable";
version = "2021-11-08";
src = fetchgit {
url = "git://sigaev.ru/smlar.git";
rev = "f2522d5f20a46a3605a761d34a3aefcdffb94e71";
hash = "sha256-AC6w7uYw0OW70pQpWbK1A3rkCnMvTJzTCAdFiY3rO7A=";
};
makeFlags = [ "USE_PGXS=1" ];
meta = {
description = "Compute similary of any one-dimensional arrays";
homepage = "http://sigaev.ru/git/gitweb.cgi?p=smlar.git";
platforms = postgresql.meta.platforms;
license = lib.licenses.bsd2;
maintainers = [ ];
# Broken with no upstream fix available.
broken = lib.versionAtLeast postgresql.version "16";
};
}
|