guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: emacs-cmake-mode: Do not inherit inputs and outputs from CMa


From: guix-commits
Subject: 01/02: gnu: emacs-cmake-mode: Do not inherit inputs and outputs from CMake.
Date: Thu, 1 Aug 2019 10:41:05 -0400 (EDT)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 5a7c6d02b287a5134511f139406889dbf965923f
Author: Marius Bakke <address@hidden>
Date:   Thu Aug 1 15:49:28 2019 +0200

    gnu: emacs-cmake-mode: Do not inherit inputs and outputs from CMake.
    
    * gnu/packages/cmake.scm (emacs-cmake-mode)[native-inputs, inputs, outputs]:
    New fields.
    [arguments]: End phases on #t.
---
 gnu/packages/cmake.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/cmake.scm b/gnu/packages/cmake.scm
index 387456b..1d8d829 100644
--- a/gnu/packages/cmake.scm
+++ b/gnu/packages/cmake.scm
@@ -9,7 +9,6 @@
 ;;; Copyright © 2018 Arun Isaac <address@hidden>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2019 Maxim Cournoyer <address@hidden>
-
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -212,6 +211,9 @@ and workspaces that can be used in the compiler environment 
of your choice.")
   (package
     (inherit cmake)
     (name "emacs-cmake-mode")
+    (native-inputs '())
+    (inputs '())
+    (outputs '("out"))
     (build-system emacs-build-system)
     (arguments
      `(#:phases
@@ -219,7 +221,8 @@ and workspaces that can be used in the compiler environment 
of your choice.")
          (add-after 'unpack 'chdir-elisp
            ;; Elisp directory is not in root of the source.
            (lambda _
-             (chdir "Auxiliary"))))))
+             (chdir "Auxiliary")
+             #t)))))
     (synopsis "Emacs major mode for editing Cmake expressions")
     (description "@code{cmakeos-mode} provides an Emacs major mode for editing
 Cmake files.  It supports syntax highlighting, indenting and refilling of



reply via email to

[Prev in Thread] Current Thread [Next in Thread]