From cc899859d834a2ec990593b5472beb4a45d22ac0 Mon Sep 17 00:00:00 2001 From: Dominic Date: Fri, 6 Dec 2024 21:09:55 +0100 Subject: [PATCH] pocketbase: 0.23.1 -> 0.23.4 --- pkgs/by-name/po/pocketbase/package.nix | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/po/pocketbase/package.nix b/pkgs/by-name/po/pocketbase/package.nix index bbf70ab526b1..2c9e4a7849b6 100644 --- a/pkgs/by-name/po/pocketbase/package.nix +++ b/pkgs/by-name/po/pocketbase/package.nix @@ -1,21 +1,22 @@ -{ lib -, buildGoModule -, fetchFromGitHub -, nix-update-script +{ + lib, + buildGoModule, + fetchFromGitHub, + nix-update-script, }: buildGoModule rec { pname = "pocketbase"; - version = "0.23.1"; + version = "0.23.4"; src = fetchFromGitHub { owner = "pocketbase"; repo = "pocketbase"; rev = "v${version}"; - hash = "sha256-he4lvlIqbIozbtMizZEjfnBbXXd6+LfZqKD95UE8sPI="; + hash = "sha256-FBxMDEqq1ZsGIVCiW7FQrrCeIupVxooZ/TcVCACdQdQ="; }; - vendorHash = "sha256-zMHEArUS4/r7nkZfDK8BwGMLrpkBihxhkBoO/p6auTk="; + vendorHash = "sha256-VRJj/NQyHECokPgrqT1piumAKCZLgorPov7AqSbEAxo="; # This is the released subpackage from upstream repo subPackages = [ "examples/base" ]; @@ -39,7 +40,10 @@ buildGoModule rec { description = "Open Source realtime backend in 1 file"; homepage = "https://github.com/pocketbase/pocketbase"; license = licenses.mit; - maintainers = with maintainers; [ dit7ya thilobillerbeck ]; + maintainers = with maintainers; [ + dit7ya + thilobillerbeck + ]; mainProgram = "pocketbase"; }; }