[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/19: gnu: global: Fix lisp install dir.
From: |
guix-commits |
Subject: |
01/19: gnu: global: Fix lisp install dir. |
Date: |
Wed, 28 Jul 2021 09:08:18 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 8afd85538a6a1ec1c6fe096c5f994f6ba8cac50c
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jul 27 12:39:46 2021 +0300
gnu: global: Fix lisp install dir.
* gnu/packages/code.scm (global)[arguments]: Adjust custom 'post-install
phase to move emacs files to the correct directory.
---
gnu/packages/code.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 86730b2..03a4fd5 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -2,7 +2,7 @@
;;; Copyright © 2013, 2015, 2018, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2015, 2018 Ricardo Wurmus <rekado@elephly.net>
-;;; Copyright © 2016, 2017, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016, 2017, 2019, 2020, 2021 Efraim Flashner
<efraim@flashner.co.il>
;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2017, 2018 Clément Lassieur <clement@lassieur.org>
;;; Copyright © 2017 Andy Wingo <wingo@igalia.com>
@@ -163,7 +163,9 @@ highlighting your own code that seemed comprehensible when
you wrote it.")
(let* ((out (assoc-ref outputs "out"))
(data (string-append out "/share/gtags"))
(vim (string-append out "/share/vim/vimfiles/plugin"))
- (lisp (string-append out "/share/emacs/site-lisp")))
+ (lisp (string-append out "/share/emacs/site-lisp/"
+ ,(package-name this-package) "-"
+ ,(package-version this-package))))
(mkdir-p lisp)
(mkdir-p vim)
(rename-file (string-append data "/gtags.el")
- branch master updated (b07c7f0 -> c20c9e1), guix-commits, 2021/07/28
- 01/19: gnu: global: Fix lisp install dir.,
guix-commits <=
- 02/19: gnu: glibc-for-bootstrap: Update patch., guix-commits, 2021/07/28
- 06/19: gnu: openlibm: Fix cross-compiling., guix-commits, 2021/07/28
- 04/19: gnu: Add pcre2-10.36., guix-commits, 2021/07/28
- 05/19: gnu: openlibm: Update to 0.7.4., guix-commits, 2021/07/28
- 09/19: gnu: julia: Update to 1.6.1., guix-commits, 2021/07/28
- 10/19: gnu: libuv-julia: Clean up package definition., guix-commits, 2021/07/28
- 03/19: gnu: Add utf8proc-2.6.1., guix-commits, 2021/07/28
- 07/19: gnu: julia-staticarrays: Update to 1.2.5, guix-commits, 2021/07/28
- 08/19: gnu: Add curl-ssh., guix-commits, 2021/07/28
- 11/19: gnu: llvm-julia: Overide build-type., guix-commits, 2021/07/28