diff options
Diffstat (limited to 'pkgs/servers/pocketbase/default.nix')
-rw-r--r-- | pkgs/servers/pocketbase/default.nix | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/pkgs/servers/pocketbase/default.nix b/pkgs/servers/pocketbase/default.nix deleted file mode 100644 index 07e1dedce259..000000000000 --- a/pkgs/servers/pocketbase/default.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ lib -, buildGoModule -, fetchFromGitHub -, nix-update-script -}: - -buildGoModule rec { - pname = "pocketbase"; - version = "0.22.20"; - - src = fetchFromGitHub { - owner = "pocketbase"; - repo = "pocketbase"; - rev = "v${version}"; - hash = "sha256-ZkajcBwoXyH6+ARI/pl1HmvN99ibgqwqF/VfmptJgrc="; - }; - - vendorHash = "sha256-5lfjwCh930B5k8KbUDW81HkmiO7io4RqEr4VP8MikeA="; - - # 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 - ''; - - passthru.updateScript = nix-update-script { }; - - 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 ]; - mainProgram = "pocketbase"; - }; -} |