me
/
guix
Archived
1
0
Fork 0

gnu: emacs-company-auctex: Fix build.

* gnu/packages/emacs-xyz.scm (emacs-company-auctex)[version]: Use version tag
from main file.
[arguments]<#:phases>: Fix "Setting current directory: No such file or
directory, /homeless-shelter/".
[propagated-inputs]: Re-order inputs alphabetically.
master
Nicolas Goaziou 2021-12-29 16:11:43 +01:00
parent 2be2749150
commit c85a4dc932
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 16 additions and 11 deletions

View File

@ -6816,19 +6816,24 @@ SuperCollider is a platform for audio synthesis and algorithmic composition.")
(revision "1"))
(package
(name "emacs-company-auctex")
(version (git-version "0" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/alexeyr/company-auctex")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"10qn7frn5wcmrlci3v6iliqzj7r9dls87h9zp3xkgrgn4bqprfp8"))))
(version (git-version "0.1" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/alexeyr/company-auctex")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "10qn7frn5wcmrlci3v6iliqzj7r9dls87h9zp3xkgrgn4bqprfp8"))))
(build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'build 'set-home
(lambda _ (setenv "HOME" "/tmp"))))))
(propagated-inputs
(list emacs-yasnippet emacs-auctex emacs-company))
(list emacs-auctex emacs-company emacs-yasnippet))
(home-page "https://github.com/alexeyr/company-auctex/")
(synopsis "Completion for @code{AUCTeX}")
(description