1
0
Fork 0

Initial commit

master
Sudoer777's Guix Server 2024-05-20 19:38:14 -05:00 committed by Sudoer777's Guix Server
commit 8f42fa4c2b
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
(use-modules (guix packages)
(guix git-download)
(guix build-system node)
(guix utils)
(guix build-system gnu)
(guix licenses))
(define-public actual-server
(package
(name "actual-server")
(version "0.0.1") ; Placeholder version
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/actualbudget/actual-server")
(commit "master"))) ; Use the latest commit on master
(file-name (git-file-name name version))
(sha256 (base32 "PLACEHOLDER")))) ; Placeholder checksum
(build-system node-build-system)
(arguments
`(#:tests? #f ; Disable tests for simplicity
#:phases (modify-phases %standard-phases
(add-after 'install 'yarn-install
(lambda* (#:key inputs outputs #:allow-other-keys)
(invoke "yarn" "install"))))))
(home-page "https://github.com/actualbudget/actual-server")
(synopsis "Actual server for budget management")
(description "Actual is a local-first personal finance tool.")
(license mit)))

2
manifest.scm 100644
View File

@ -0,0 +1,2 @@
(specifications->manifest
(list "actual-server"))