mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "pocketbase";
|
|
version = "0.16.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pocketbase";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-xthv6/mTtOsT8Q4xk+XXO5TDDCFYcMPFLOv+pkagpU4=";
|
|
};
|
|
|
|
vendorHash = "sha256-4h3Q8w7emjfZkVr0xujoOUjipXnDQfHOn8Ii19cNllI=";
|
|
|
|
# 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
|
|
'';
|
|
|
|
patches = [
|
|
# To provide a consistent update experience, we remove the built in update method
|
|
./remove-update-method.patch
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|