diff options
author | Efraim Flashner <[email protected]> | 2024-02-25 15:29:56 +0200 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2024-02-25 16:20:35 +0200 |
commit | 0a6663835c47c953e6e418cad6e014997a59d4ab (patch) | |
tree | 7d2b4c3f20cd8dbd1b8d490e75b041217ecff3a2 /gnu/packages/engineering.scm | |
parent | 386080366c642d887f9156059e4e894cd2d4e9b1 (diff) |
gnu: poke: Adjust vim plugin directory.
* gnu/packages/engineering.scm (poke)[arguments]: Add configure-flag to
install vim plugin to the correct directory.
Change-Id: I8977fe1858a144ba630b3757e038142424cd1c23
Diffstat (limited to 'gnu/packages/engineering.scm')
-rw-r--r-- | gnu/packages/engineering.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index fe7db0628e..ae287cf51b 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015-2023 Ricardo Wurmus <[email protected]> ;;; Copyright © 2015 Federico Beffa <[email protected]> -;;; Copyright © 2016, 2018, 2020-2023 Efraim Flashner <[email protected]> +;;; Copyright © 2016, 2018, 2020-2024 Efraim Flashner <[email protected]> ;;; Copyright © 2016 David Thompson <[email protected]> ;;; Copyright © 2016-2019, 2021, 2023 Ludovic Courtès <[email protected]> ;;; Copyright © 2016, 2017, 2018 Theodoros Foradis <[email protected]> @@ -3272,6 +3272,8 @@ program that can perform mesh processing tasks in batch mode, without a GUI.") (guix build utils)) #:configure-flags #~(list "--disable-static" + (string-append "--with-vimdir=" #$output + "/share/vim/vimfiles/pack/guix/start/poke") (string-append "--with-lispdir=" (emacs:elpa-directory #$output))))) (home-page "https://www.gnu.org/software/poke/#documentation") |