[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: cmake: Adjust vim plugin directory.
From: |
guix-commits |
Subject: |
02/02: gnu: cmake: Adjust vim plugin directory. |
Date: |
Sun, 25 Feb 2024 10:59:20 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit b25b94335a3ee8d68d2145da8e5ea0325ecea451
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Feb 25 16:10:26 2024 +0200
gnu: cmake: Adjust vim plugin directory.
* gnu/packages/cmake.scm (cmake)[arguments]: Add configure-flag to
install vim plugin to the correct directory.
Change-Id: I35909bcdb1c71a19ff76a81087e0b524163da624
---
gnu/packages/cmake.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cmake.scm b/gnu/packages/cmake.scm
index 1592703f8d..9e5451d5ee 100644
--- a/gnu/packages/cmake.scm
+++ b/gnu/packages/cmake.scm
@@ -4,7 +4,7 @@
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
-;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016, 2024 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017, 2018, 2020, 2021 Marius Bakke <marius@gnu.org>
;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
@@ -380,6 +380,8 @@ and workspaces that can be used in the compiler environment
of your choice.")
(string-append "-DCMAKE_DOC_DIR=share/doc/cmake-"
#$(version-major+minor (package-version
cmake-minimal)))
+ (string-append "-DCMake_INSTALL_VIMFILES_DIR=" #$output
+
"/share/vim/vimfiles/pack/guix/start/cmake")
"-DCMAKE_INFO_DIR=share/info"
"-DCMAKE_MAN_DIR=share/man")
#$flags))