postgresqlPackages.temporal_tables: 1.2.0 -> 2021-02-20

Version 1.2.0 was released in 2017, and there have been no releases
since then. However, commit 3ce22da adds support for PostgreSQL 13.

Move the repository owner to `arkhipov`, since it's the one used by PGXN
https://pgxn.org/dist/temporal_tables/
This commit is contained in:
Ryan Trinkle 2023-01-04 17:02:58 +00:00 committed by Mario Rodas
parent 9b96e87b46
commit e88449419a

View File

@ -2,15 +2,15 @@
stdenv.mkDerivation rec {
pname = "temporal_tables";
version = "1.2.0";
version = "unstable-2021-02-20";
buildInputs = [ postgresql ];
src = fetchFromGitHub {
owner = "mlt";
owner = "arkhipov";
repo = pname;
rev = "6cc86eb03d618d6b9fc09ae523f1a1e5228d22b5";
sha256 = "0ykv37rm511n5955mbh9dcp7pgg88z1nwgszav7z6pziaj3nba8x";
rev = "3ce22da51f2549e8f8b8fbf2850c63eb3a2f1fbb";
sha256 = "sha256-kmcl6vVHRZj2G5GijEyaZgDpZBDcdIUKzXv0rYYqUu4=";
};
installPhase = ''
@ -22,7 +22,6 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Temporal Tables PostgreSQL Extension ";
homepage = "https://github.com/mlt/temporal_tables";
maintainers = with maintainers; [ ggpeti ];