{ lib , buildGoModule , fetchFromGitHub }: buildGoModule rec { pname = "pocketbase"; version = "0.18.6"; src = fetchFromGitHub { owner = "pocketbase"; repo = "pocketbase"; rev = "v${version}"; hash = "sha256-QfipP/nq/vE0TnK/JGLIbO282bFSrnIgGzkfU6N+euY="; }; vendorHash = "sha256-pDLj0Az7aQow1Q+7ANxv5kZQrqBby6gzkfAoV87/k9E="; # 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 thilobillerbeck ]; }; }