guix-commits
[Top][All Lists]
Advanced

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

30/31: gnu: xmobar: Drop Haskell libraries and documentation.


From: guix-commits
Subject: 30/31: gnu: xmobar: Drop Haskell libraries and documentation.
Date: Sun, 26 Feb 2023 04:44:39 -0500 (EST)

lbraun pushed a commit to branch master
in repository guix.

commit 6188fe26334bb023363e484ffb7729a366c6f1a2
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Sun Jan 29 19:00:57 2023 +0100

    gnu: xmobar: Drop Haskell libraries and documentation.
    
    * gnu/packages/wm.scm (xmobar)[arguments]: Add
    'remove-libraries phase and disable #:haddock?.
---
 gnu/packages/wm.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 6594a48273..9ba2841817 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -869,13 +869,17 @@ tiled on several screens.")
            libxpm))
     (arguments
      `(#:configure-flags (list "--flags=all_extensions")
+       ;; Haddock documentation is for the library.
+       #:haddock? #f
        #:phases
        (modify-phases %standard-phases
+         (add-after 'register 'remove-libraries
+             (lambda* (#:key outputs #:allow-other-keys)
+               (delete-file-recursively (string-append (assoc-ref outputs 
"out") "/lib"))))
          (add-before 'build 'patch-test-shebang
            (lambda* (#:key inputs #:allow-other-keys)
              (substitute* "test/Xmobar/Plugins/Monitors/AlsaSpec.hs"
-               (("/bin/bash") (which "bash")))
-             #t)))))
+               (("/bin/bash") (which "bash"))))))))
     (home-page "https://xmobar.org";)
     (synopsis "Minimalistic text based status bar")
     (description



reply via email to

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