nixpkgs/pkgs/servers/pocketbase/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
885 B
Nix
Raw Normal View History

2022-08-21 02:45:05 +03:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "pocketbase";
2023-04-26 04:19:58 +03:00
version = "0.15.1";
2022-08-21 02:45:05 +03:00
src = fetchFromGitHub {
owner = "pocketbase";
repo = pname;
rev = "v${version}";
2023-04-26 04:19:58 +03:00
sha256 = "sha256-SxtKAu+ZLMMoOYqKrg/tARw2GCNDbsceWjsHm0iXwbU=";
2022-08-21 02:45:05 +03:00
};
2023-04-26 04:19:58 +03:00
vendorHash = "sha256-OknAntETXDJVl2i5ie1VwsbGmcbRWA+MJomaCIgdKDo=";
2022-08-21 02:45:05 +03:00
# 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 ];
};
}