pocketbase: 0.23.1 -> 0.23.4

This commit is contained in:
Dominic
2024-12-06 21:09:55 +01:00
parent 08f55a8c72
commit cc899859d8
+12 -8
View File
@@ -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";
};
}