mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: emacs-guix: Update to 0.3.2.
* gnu/packages/emacs.scm (emacs-guix): Update to 0.3.2. [arguments]: Add '--with-guix-site-ccache-dir' configure flag, as Guix installs its .go files separately nowadays.
This commit is contained in:
parent
9c0a05b31e
commit
3fb8e281b7
1 changed files with 9 additions and 2 deletions
|
@ -1393,7 +1393,7 @@ (define-public emacs-bui
|
||||||
(define-public emacs-guix
|
(define-public emacs-guix
|
||||||
(package
|
(package
|
||||||
(name "emacs-guix")
|
(name "emacs-guix")
|
||||||
(version "0.3.1")
|
(version "0.3.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/alezost/guix.el"
|
(uri (string-append "https://github.com/alezost/guix.el"
|
||||||
|
@ -1401,7 +1401,7 @@ (define-public emacs-guix
|
||||||
"/emacs-guix-" version ".tar.gz"))
|
"/emacs-guix-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0s7s90rfba8ccbilbvmbcwn4qp4m0jv9y58xq8avm39cygmjgyxz"))))
|
"0bffxlaq4w9yijl9prnfm26fisr2rd1whjg1yzvri1zl6zh9s0lk"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
|
@ -1419,6 +1419,13 @@ (define-public emacs-guix
|
||||||
"2."
|
"2."
|
||||||
(basename file)))
|
(basename file)))
|
||||||
#:directories? #t)))
|
#:directories? #t)))
|
||||||
|
(string-append "--with-guix-site-ccache-dir="
|
||||||
|
(car (find-files (string-append guix "/lib/guile")
|
||||||
|
(lambda (file stat)
|
||||||
|
(string-prefix?
|
||||||
|
"2." (basename file)))
|
||||||
|
#:directories? #t))
|
||||||
|
"/site-ccache")
|
||||||
(string-append "--with-geiser-lispdir=" geiser site-lisp)
|
(string-append "--with-geiser-lispdir=" geiser site-lisp)
|
||||||
(string-append "--with-dash-lispdir="
|
(string-append "--with-dash-lispdir="
|
||||||
dash site-lisp "/guix.d/dash-"
|
dash site-lisp "/guix.d/dash-"
|
||||||
|
|
Loading…
Reference in a new issue