gnu: emacs-guix: Remove unnecessary configure flags.
* gnu/packages/emacs-xyz.scm (emacs-guix)[arguments]: Remove.
This commit is contained in:
parent
06ab895e8c
commit
93f606b343
1 changed files with 0 additions and 41 deletions
|
@ -2127,47 +2127,6 @@ type, for example: packages, buffers, files, etc.")
|
||||||
(base32
|
(base32
|
||||||
"0yz64c0z4ygi2k4af18k4r1ncgys18jb8icywkp2g5pgmpn5l7ps"))))
|
"0yz64c0z4ygi2k4af18k4r1ncgys18jb8icywkp2g5pgmpn5l7ps"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
|
||||||
`(#:configure-flags
|
|
||||||
(let ((guix (assoc-ref %build-inputs "guix"))
|
|
||||||
(gcrypt (assoc-ref %build-inputs "guile-gcrypt"))
|
|
||||||
(geiser (assoc-ref %build-inputs "geiser"))
|
|
||||||
(dash (assoc-ref %build-inputs "dash"))
|
|
||||||
(bui (assoc-ref %build-inputs "bui"))
|
|
||||||
(magit-popup (assoc-ref %build-inputs "magit-popup"))
|
|
||||||
(edit-indirect (assoc-ref %build-inputs "edit-indirect"))
|
|
||||||
(site-lisp "/share/emacs/site-lisp")
|
|
||||||
(site-scm "/share/guile/site")
|
|
||||||
(site-go "/lib/guile")
|
|
||||||
(guile-dir (lambda (dir)
|
|
||||||
(car (find-files dir
|
|
||||||
(lambda (file stat)
|
|
||||||
(string-prefix?
|
|
||||||
"2." (basename file)))
|
|
||||||
#:directories? #t)))))
|
|
||||||
(list (string-append "--with-guix-site-dir="
|
|
||||||
(guile-dir (string-append guix site-scm)))
|
|
||||||
(string-append "--with-guix-site-ccache-dir="
|
|
||||||
(guile-dir (string-append guix site-go))
|
|
||||||
"/site-ccache")
|
|
||||||
(string-append "--with-guile-gcrypt-site-dir="
|
|
||||||
(guile-dir (string-append gcrypt site-scm)))
|
|
||||||
(string-append "--with-guile-gcrypt-site-ccache-dir="
|
|
||||||
(guile-dir (string-append gcrypt site-go))
|
|
||||||
"/site-ccache")
|
|
||||||
(string-append "--with-geiser-lispdir=" geiser site-lisp)
|
|
||||||
(string-append "--with-dash-lispdir="
|
|
||||||
dash site-lisp "/guix.d/dash-"
|
|
||||||
,(package-version emacs-dash))
|
|
||||||
(string-append "--with-bui-lispdir="
|
|
||||||
bui site-lisp "/guix.d/bui-"
|
|
||||||
,(package-version emacs-bui))
|
|
||||||
(string-append "--with-editindirect-lispdir="
|
|
||||||
edit-indirect site-lisp "/guix.d/edit-indirect-"
|
|
||||||
,(package-version emacs-edit-indirect))
|
|
||||||
(string-append "--with-popup-lispdir="
|
|
||||||
magit-popup site-lisp "/guix.d/magit-popup-"
|
|
||||||
,(package-version emacs-magit-popup))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("emacs" ,emacs-minimal)))
|
("emacs" ,emacs-minimal)))
|
||||||
|
|
Reference in a new issue