me
/
guix
Archived
1
0
Fork 0

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.
master
Alex Kost 2017-07-02 17:47:43 +03:00
parent 9c0a05b31e
commit 3fb8e281b7
No known key found for this signature in database
GPG Key ID: 82460C082A0EE98F
1 changed files with 9 additions and 2 deletions

View File

@ -1393,7 +1393,7 @@ type, for example: packages, buffers, files, etc.")
(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 @@ type, for example: packages, buffers, files, etc.")
"/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 @@ type, for example: packages, buffers, files, etc.")
"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-"