diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2019-07-05 15:42:20 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2019-07-05 15:45:08 +0300 |
| commit | d05d159dc707abd098bf2d06fd7cd2cadf893615 (patch) | |
| tree | 64ac7946c872d15ecdb45e984a2191510fb727a7 | |
| parent | wigust: Fix 'admin.scm'. (diff) | |
| download | guix-wigust-d05d159dc707abd098bf2d06fd7cd2cadf893615.tar.gz | |
wigust: Delete emacs-athena-next.
* wigust/packages/emacs.scm (emacs-athena-next): Delete variable.
| -rw-r--r-- | wigust/packages/emacs.scm | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm index 00e38b5..466e134 100644 --- a/wigust/packages/emacs.scm +++ b/wigust/packages/emacs.scm @@ -105,58 +105,6 @@ editor with athena toolkit" ) `(#:configure-flags '("--with-x-toolkit=athena") ,@(package-arguments emacs))))) -(define-public emacs-athena-next - (let ((commit "4122d54067c61bbdff5aab7ddf5dfe5b5797b218")) - (package - (inherit emacs-athena) - (name "emacs-athena-next") - (version (string-append "26" "." (string-take commit 7))) - (source - (origin - (method url-fetch) - (uri (string-append "https://git.savannah.gnu.org/cgit/" - "emacs.git/snapshot/emacs-" - commit ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (patches (search-patches "emacs-exec-path.patch" - "emacs-source-date-epoch.patch")) - (modules '((guix build utils))) - (snippet - ;; Delete the bundled byte-compiled elisp files and - ;; generated autoloads. - '(with-directory-excursion "lisp" - (for-each delete-file - (append (find-files "." "\\.elc$") - (find-files "." "loaddefs\\.el$"))) - - ;; Make sure Tramp looks for binaries in the right places on - ;; remote GuixSD machines, where 'getconf PATH' returns - ;; something bogus. - (substitute* "net/tramp-sh.el" - ;; Patch the line after "(defcustom tramp-remote-path". - (("\\(tramp-default-remote-path") - (format #f "(tramp-default-remote-path ~s ~s ~s ~s " - "~/.guix-profile/bin" "~/.guix-profile/sbin" - "/run/current-system/profile/bin" - "/run/current-system/profile/sbin"))))) - (sha256 - (base32 "1bngb51hjwjygv8gj9hdnbyvch2w1v9c5dg24igmk95sj7ncx0yq")))) - (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ,@(package-native-inputs emacs))) - (arguments - (substitute-keyword-arguments - `(#:parallel-build? #t - #:tests? #f - ,@(package-arguments emacs)) - ((#:phases phases) - `(modify-phases ,phases - (add-after 'unpack 'autogen - (lambda _ - (zero? (system* "sh" "autogen.sh")))) - (delete 'reset-gzip-timestamps)))))))) - (define-public emacs-company-tern (package (name "emacs-company-tern") |
