diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-08-26 07:08:03 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-08-26 07:08:03 +0200 |
commit | 9d074e16c7a9879d67c348c7b2d70b725adfbdfa (patch) | |
tree | c4c8dc52508717b3b7aa7c988924a03aa6eb83d8 /gnu/packages/embedded.scm | |
parent | ca7e310f7ac32354b2e693e9a0f783320952a8fc (diff) | |
parent | eeb71d778f149834015858467fbeeb1276d96d1d (diff) | |
download | guix-9d074e16c7a9879d67c348c7b2d70b725adfbdfa.tar.gz guix-9d074e16c7a9879d67c348c7b2d70b725adfbdfa.zip |
Merge branch 'master' into emacs-team
Diffstat (limited to 'gnu/packages/embedded.scm')
-rw-r--r-- | gnu/packages/embedded.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm index d3bb794269..325013a627 100644 --- a/gnu/packages/embedded.scm +++ b/gnu/packages/embedded.scm @@ -1460,19 +1460,20 @@ debugging them, and more.") (define-public ebusd (package (name "ebusd") - (version "3.4") + (version "23.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/john30/ebusd") - (commit (string-append "v" version)))) + (commit version))) (file-name (string-append name "-" version "-checkout")) (sha256 (base32 - "0iva70bam7wdx60bpd3an9kxr28zxlvp3vprivgqshwwdhqa0hzp")))) + "1zqnxk6vgszlf410pypsjjliiy9wawy585fm7v25mka47i6iqafq")))) (build-system gnu-build-system) (arguments - `(#:phases + `(#:configure-flags '("--localstatedir=/var") + #:phases (modify-phases %standard-phases (add-after 'install 'install-config (lambda* (#:key inputs outputs #:allow-other-keys) |