f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
48 lines
1 KiB
Nix
48 lines
1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libsodium
|
|
, buildGoModule
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
|
|
version = "photos-v0.9.5";
|
|
pname = "museum";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ente-io";
|
|
repo = "ente";
|
|
sparseCheckout = [ "server" ];
|
|
rev = version;
|
|
hash = "sha256-U+3k6uIJWDw7QxF1GRF+f6ZXdmCwSkOJ/F60rU1PXRM=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/server";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libsodium ];
|
|
|
|
# fatal: "Not running tests in non-test environment"
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/museum
|
|
cp -R configurations \
|
|
migrations \
|
|
mail-templates \
|
|
$out/share/museum
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "API server for ente.io";
|
|
homepage = "https://github.com/ente-io/ente/tree/main/server";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ surfaceflinger pinpox ];
|
|
mainProgram = "museum";
|
|
platforms = platforms.linux;
|
|
};
|
|
vendorHash = "sha256-Vo3KhWWxO0k/d5qUFRfX44oTZBXtJeUlz6qaUvXLDag=";
|
|
}
|
|
|
|
|