summary refs log tree commit diff
path: root/pkgs/servers/sql/postgresql/ext
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-10-25 20:56:56 -0500
committerGitHub <noreply@github.com>2023-10-25 20:56:56 -0500
commitfb97aa67abd5258fc482b92fdce3e905a81fac3c (patch)
tree5f7a794e066c5c4e38055bffa6b2d33f649465f3 /pkgs/servers/sql/postgresql/ext
parent5d6e271baf959b6934582026aa6beb4383c147a8 (diff)
parentd42436b175b8e1daa801381b2f39e19da1f87c5f (diff)
downloadnixpkgs-fb97aa67abd5258fc482b92fdce3e905a81fac3c.tar
nixpkgs-fb97aa67abd5258fc482b92fdce3e905a81fac3c.tar.gz
nixpkgs-fb97aa67abd5258fc482b92fdce3e905a81fac3c.tar.bz2
nixpkgs-fb97aa67abd5258fc482b92fdce3e905a81fac3c.tar.lz
nixpkgs-fb97aa67abd5258fc482b92fdce3e905a81fac3c.tar.xz
nixpkgs-fb97aa67abd5258fc482b92fdce3e905a81fac3c.tar.zst
nixpkgs-fb97aa67abd5258fc482b92fdce3e905a81fac3c.zip
Merge pull request #262882 from gaelreyrol/postgresql-packages-pg_uudiv7-init
postgresqlPackages.pg_uuidv7: init at 1.3.0
Diffstat (limited to 'pkgs/servers/sql/postgresql/ext')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pg_uuidv7.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pg_uuidv7.nix b/pkgs/servers/sql/postgresql/ext/pg_uuidv7.nix
new file mode 100644
index 00000000000..6daa5e0cf0e
--- /dev/null
+++ b/pkgs/servers/sql/postgresql/ext/pg_uuidv7.nix
@@ -0,0 +1,34 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, postgresql
+}:
+
+stdenv.mkDerivation rec {
+  pname = "pg_uuidv7";
+  version = "1.3.0";
+
+  buildInputs = [ postgresql ];
+
+  src = fetchFromGitHub {
+    owner = "fboulnois";
+    repo = "pg_uuidv7";
+    rev = "v${version}";
+    hash = "sha256-kHxS9tL7fpKhjJ8Xx5tee1fv10zVcTt2FgUQSaRdNZo=";
+  };
+
+  installPhase = ''
+      install -D -t $out/lib pg_uuidv7${postgresql.dlSuffix}
+      install -D {sql/pg_uuidv7--${lib.versions.majorMinor version}.sql,pg_uuidv7.control} -t $out/share/postgresql/extension
+  '';
+
+  meta = with lib; {
+    description = "A tiny Postgres extension to create version 7 UUIDs";
+    homepage = "https://github.com/fboulnois/pg_uuidv7";
+    changelog = "https://github.com/fboulnois/pg_uuidv7/blob/main/CHANGELOG.md";
+    maintainers = with maintainers; [ gaelreyrol ];
+    platforms = postgresql.meta.platforms;
+    license = licenses.mpl20;
+    broken = versionOlder postgresql.version "13";
+  };
+}