
fix compat with rm 3.20 See https://github.com/ddvk/rmfakecloud/pull/364 (note it also apparently requires adding eu.tectonic.remarkable.com to the dozen of other redirected domains in /etc/hosts... not sure that's worth writing in release notes?)
72 lines
1.7 KiB
Nix
72 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
enableWebui ? true,
|
|
pnpm_9,
|
|
nodejs,
|
|
nixosTests,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "rmfakecloud";
|
|
version = "0.0.25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ddvk";
|
|
repo = "rmfakecloud";
|
|
rev = "v${version}";
|
|
hash = "sha256-dembIFEoKQEZabsl7oK8rzvV2G7nhmebfw0AGUBanYs=";
|
|
};
|
|
|
|
vendorHash = "sha256-ColOCdKa/sKoLnF/3idBIEyFB2JWYM+1y5TdC/LZT4A=";
|
|
|
|
# if using webUI build it
|
|
# use env because of https://github.com/NixOS/nixpkgs/issues/358844
|
|
env.pnpmRoot = "ui";
|
|
env.pnpmDeps = pnpm_9.fetchDeps {
|
|
inherit pname version src;
|
|
sourceRoot = "${src.name}/ui";
|
|
pnpmLock = "${src}/ui/pnpm-lock.yaml";
|
|
fetcherVersion = 1;
|
|
hash = "sha256-uywmHN9HWKi0CaqTg9uEio2XCu6ap9v2xtbodW/6b4Q=";
|
|
};
|
|
preBuild = lib.optionals enableWebui ''
|
|
# using sass-embedded fails at executing node_modules/sass-embedded-linux-x64/dart-sass/src/dart
|
|
rm -r ui/node_modules/sass-embedded ui/node_modules/.pnpm/sass-embedded*
|
|
|
|
# avoid re-running pnpm i...
|
|
touch ui/pnpm-lock.yaml
|
|
|
|
make ui/dist
|
|
'';
|
|
nativeBuildInputs = lib.optionals enableWebui [
|
|
nodejs
|
|
pnpm_9.configHook
|
|
];
|
|
|
|
# ... or don't embed it in the server
|
|
postPatch = lib.optionals (!enableWebui) ''
|
|
sed -i '/go:/d' ui/assets.go
|
|
'';
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.version=v${version}"
|
|
];
|
|
|
|
passthru.tests.rmfakecloud = nixosTests.rmfakecloud;
|
|
|
|
meta = with lib; {
|
|
description = "Host your own cloud for the Remarkable";
|
|
homepage = "https://ddvk.github.io/rmfakecloud/";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [
|
|
euxane
|
|
martinetd
|
|
];
|
|
mainProgram = "rmfakecloud";
|
|
};
|
|
}
|