postgresqlPackages.pg_cron: 1.1.3 -> 1.1.4 (#59396)
This commit is contained in:
parent
08beac0512
commit
0b8d120d84
@ -1,19 +1,20 @@
|
|||||||
{ stdenv, fetchFromGitHub, postgresql }:
|
{ stdenv, fetchFromGitHub, postgresql }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "pg_cron-${version}";
|
pname = "pg_cron";
|
||||||
version = "1.1.3";
|
version = "1.1.4";
|
||||||
|
|
||||||
buildInputs = [ postgresql ];
|
buildInputs = [ postgresql ];
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "citusdata";
|
owner = "citusdata";
|
||||||
repo = "pg_cron";
|
repo = pname;
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
sha256 = "0r33b0c9gdx2lfhrp7lpkif3j8qbzxmnywkcs2rcxwf9qzrb4vnj";
|
sha256 = "0wkqgrm3v999hjcc82h24jv1pib6f6bw8jsv83hgk6g3iv6xsjg9";
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin # For buildEnv to setup proper symlinks. See #22653
|
||||||
mkdir -p $out/{lib,share/extension}
|
mkdir -p $out/{lib,share/extension}
|
||||||
|
|
||||||
cp *.so $out/lib
|
cp *.so $out/lib
|
||||||
@ -23,9 +24,9 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Run Cron jobs through PostgreSQL";
|
description = "Run Cron jobs through PostgreSQL";
|
||||||
homepage = https://www.citusdata.com/;
|
homepage = https://github.com/citusdata/pg_cron;
|
||||||
maintainers = with maintainers; [ thoughtpolice ];
|
maintainers = with maintainers; [ thoughtpolice ];
|
||||||
platforms = platforms.linux;
|
platforms = postgresql.meta.platforms;
|
||||||
license = licenses.postgresql;
|
license = licenses.postgresql;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user