about summary refs log tree commit diff
path: root/pkgs/servers/pocketbase
diff options
context:
space:
mode:
authorMostly Void <dit7ya@users.noreply.github.com>2022-08-21 05:15:05 +0530
committerGitHub <noreply@github.com>2022-08-21 01:45:05 +0200
commit9e6fd6c8aad7da7a1b0a7aa346b8e6065f592380 (patch)
treeda61279a3610e680aac44eeb097d774cb0f1f507 /pkgs/servers/pocketbase
parentdd0e2449a6ebc652ace291dfb4cfc800c93cd63f (diff)
pocketbase: init at 0.4.2 (#187024)
Diffstat (limited to 'pkgs/servers/pocketbase')
-rw-r--r--pkgs/servers/pocketbase/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/servers/pocketbase/default.nix b/pkgs/servers/pocketbase/default.nix
new file mode 100644
index 0000000000000..b02ba47cb3265
--- /dev/null
+++ b/pkgs/servers/pocketbase/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "pocketbase";
+  version = "0.4.2";
+
+  src = fetchFromGitHub {
+    owner = "pocketbase";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-uDseJmuK6SI3e2ICqr8SJ0iKOVCXONueZUJ6J8MKwYE=";
+  };
+
+  vendorSha256 = "sha256-8IiY/gjK8m2ntOXyG84HMiyT4GK3CgDTRG1DB+v0jAs=";
+
+  # This is the released subpackage from upstream repo
+  subPackages = [ "examples/base" ];
+
+  CGO_ENABLED = 0;
+
+  # Upstream build instructions
+  ldflags = [
+    "-s"
+    "-w"
+    "-X github.com/pocketbase/pocketbase.Version=${version}"
+  ];
+
+  postInstall = ''
+    mv $out/bin/base $out/bin/pocketbase
+  '';
+
+  meta = with lib; {
+    description = "Open Source realtime backend in 1 file";
+    homepage = "https://github.com/pocketbase/pocketbase";
+    license = licenses.mit;
+    maintainers = with maintainers; [ dit7ya ];
+  };
+}