Initial commit
commit
8f42fa4c2b
|
@ -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)))
|
|
@ -0,0 +1,2 @@
|
||||||
|
(specifications->manifest
|
||||||
|
(list "actual-server"))
|
Loading…
Reference in New Issue