mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 06:28:50 +03:00
postgresqlPackages.smlar: init at 2020-04-08
This commit is contained in:
parent
2d6c2690f6
commit
504ec2573e
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 { };
|
pipelinedb = super.callPackage ./ext/pipelinedb.nix { };
|
||||||
|
|
||||||
|
smlar = super.callPackage ./ext/smlar.nix { };
|
||||||
|
|
||||||
temporal_tables = super.callPackage ./ext/temporal_tables.nix { };
|
temporal_tables = super.callPackage ./ext/temporal_tables.nix { };
|
||||||
|
|
||||||
timescaledb = super.callPackage ./ext/timescaledb.nix { };
|
timescaledb = super.callPackage ./ext/timescaledb.nix { };
|
||||||
|
Loading…
Reference in New Issue
Block a user