mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
Merge pull request #94695 from marsam/init-postgresql-smlar
postgresqlPackages.smlar: init at 2020-04-08
This commit is contained in:
commit
4d0349d3b8
30
pkgs/servers/sql/postgresql/ext/smlar.nix
Normal file
30
pkgs/servers/sql/postgresql/ext/smlar.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, fetchgit, postgresql }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "smlar-unstable";
|
||||
version = "2020-04-08";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://sigaev.ru/smlar.git";
|
||||
rev = "0c345af71969d9863bb76efa833391d00705669e";
|
||||
sha256 = "1pr3pbnjc9n209l52sgsn4xqzp92qk6wci55hcqjjrwf2gdxy0yr";
|
||||
};
|
||||
|
||||
buildInputs = [ postgresql ];
|
||||
|
||||
makeFlags = [ "USE_PGXS=1" ];
|
||||
|
||||
installPhase = ''
|
||||
install -D -t $out/lib *.so
|
||||
install -D -t $out/share/postgresql/extension *.sql
|
||||
install -D -t $out/share/postgresql/extension *.control
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Compute similary of any one-dimensional arrays";
|
||||
homepage = "http://sigaev.ru/git/gitweb.cgi?p=smlar.git";
|
||||
platforms = postgresql.meta.platforms;
|
||||
license = licenses.bsd2;
|
||||
maintainers = [ maintainers.marsam ];
|
||||
};
|
||||
}
|
|
@ -41,6 +41,8 @@ self: super: {
|
|||
|
||||
pipelinedb = super.callPackage ./ext/pipelinedb.nix { };
|
||||
|
||||
smlar = super.callPackage ./ext/smlar.nix { };
|
||||
|
||||
temporal_tables = super.callPackage ./ext/temporal_tables.nix { };
|
||||
|
||||
timescaledb = super.callPackage ./ext/timescaledb.nix { };
|
||||
|
|
Loading…
Reference in a new issue