63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
libsodium,
|
|
buildGoModule,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "museum";
|
|
version = "1.1.57";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ente-io";
|
|
repo = "ente";
|
|
sparseCheckout = [ "server" ];
|
|
tag = "photos-v${version}";
|
|
hash = "sha256-801wTTxruhZc18+TAPSYrBRtCPNZXwSKs2Hkvc/6BjM=";
|
|
};
|
|
|
|
vendorHash = "sha256-px4pMqeH73Fe06va4+n6hklIUDMbPmAQNKKRIhwv6ec=";
|
|
|
|
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 \
|
|
web-templates \
|
|
$out/share/museum
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script {
|
|
extraArgs = [
|
|
"--version-regex"
|
|
"photos-v(.*)"
|
|
];
|
|
};
|
|
|
|
meta = {
|
|
description = "API server for ente.io";
|
|
homepage = "https://github.com/ente-io/ente/tree/main/server";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [
|
|
pinpox
|
|
];
|
|
mainProgram = "museum";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|