nixpkgs-suyu/pkgs/servers/pocketbase/default.nix

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

42 lines
886 B
Nix
Raw Normal View History

2022-08-21 01:45:05 +02:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "pocketbase";
2022-09-22 03:55:35 +02:00
version = "0.7.5";
2022-08-21 01:45:05 +02:00
src = fetchFromGitHub {
owner = "pocketbase";
repo = pname;
rev = "v${version}";
2022-09-22 03:55:35 +02:00
sha256 = "sha256-4UTAY7yGMYM84NNjzhnXNjPGyO2hOoINE925M4LLgJk=";
2022-08-21 01:45:05 +02:00
};
2022-09-03 17:45:33 +02:00
vendorSha256 = "sha256-Ty06TegTT4BILgH0MpnxINxBQMW0zi0ItptHmDqKW1k=";
2022-08-21 01:45:05 +02: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 ];
};
}