-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: PatrickDaG <[email protected]>
- Loading branch information
1 parent
d3429a1
commit f42d6ad
Showing
1 changed file
with
119 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
{ | ||
lib, | ||
stdenv, | ||
stdenvNoCC, | ||
fetchFromGitHub, | ||
makeWrapper, | ||
cacert, | ||
gitMinimal, | ||
nodejs, | ||
yarn, | ||
nixosTests, | ||
nix-update-script, | ||
}: | ||
let | ||
version = "24.11.0"; | ||
src = fetchFromGitHub { | ||
owner = "actualbudget"; | ||
repo = "actual-server"; | ||
rev = "v${version}"; | ||
hash = "sha256-tEanuY2GRufLbyjkhwFcsn8Nl3wlf/PbVJjzJfTTk7g="; | ||
}; | ||
|
||
# We cannot use fetchYarnDeps because that doesn't support yarn2/berry | ||
# lockfiles (see https://github.com/NixOS/nixpkgs/issues/254369) | ||
offlineCache = stdenvNoCC.mkDerivation { | ||
name = "actual-server-${version}-offline-cache"; | ||
inherit src; | ||
|
||
nativeBuildInputs = [ | ||
cacert # needed for git | ||
gitMinimal # needed to download git dependencies | ||
yarn | ||
]; | ||
|
||
SUPPORTED_ARCHITECTURES = builtins.toJSON { | ||
os = [ | ||
"darwin" | ||
"linux" | ||
]; | ||
cpu = [ | ||
"arm" | ||
"arm64" | ||
"ia32" | ||
"x64" | ||
]; | ||
libc = [ | ||
"glibc" | ||
"musl" | ||
]; | ||
}; | ||
|
||
buildPhase = '' | ||
runHook preBuild | ||
export HOME=$(mktemp -d) | ||
yarn config set enableTelemetry 0 | ||
yarn config set cacheFolder $out | ||
yarn config set --json supportedArchitectures "$SUPPORTED_ARCHITECTURES" | ||
yarn | ||
runHook postBuild | ||
''; | ||
|
||
installPhase = '' | ||
runHook preInstall | ||
mkdir -p $out | ||
cp -r ./node_modules $out/node_modules | ||
runHook postInstall | ||
''; | ||
dontFixup = true; | ||
|
||
outputHashAlgo = "sha256"; | ||
outputHashMode = "recursive"; | ||
outputHash = "sha256-yda1GdnPRHOoaJzkGz755Lm9/J60lFDsVvBgf/2e+3I="; | ||
}; | ||
in | ||
stdenv.mkDerivation { | ||
pname = "actual-server"; | ||
inherit version src; | ||
|
||
nativeBuildInputs = [ | ||
makeWrapper | ||
yarn | ||
]; | ||
|
||
installPhase = '' | ||
runHook preInstall | ||
mkdir -p $out/{bin,lib,lib/actual} | ||
cp -r ${offlineCache}/node_modules/ $out/lib/actual | ||
cp -r ./ $out/lib/actual | ||
makeWrapper ${lib.getExe nodejs} "$out/bin/actual-server" \ | ||
--add-flags "$out/lib/actual/app.js" \ | ||
--set NODE_PATH "$out/node_modules" | ||
runHook postInstall | ||
''; | ||
|
||
passthru = { | ||
inherit offlineCache; | ||
tests = nixosTests.actual; | ||
passthru.updateScript = nix-update-script { }; | ||
}; | ||
|
||
meta = { | ||
changelog = "https://github.com/firefly-iii/firefly-iii/releases/tag/v${version}"; | ||
description = "A super fast privacy-focused app for managing your finances"; | ||
homepage = "https://actualbudget.org/"; | ||
mainProgram = "actual-server"; | ||
license = lib.licenses.mit; | ||
maintainers = [ | ||
lib.maintainers.oddlama | ||
lib.maintainers.patrickdag | ||
]; | ||
}; | ||
} |