guix-patches
[Top][All Lists]
Advanced

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

bug#38480: [PATCH] gnu: Add lolcat


From: Ludovic Courtès
Subject: bug#38480: [PATCH] gnu: Add lolcat
Date: Sun, 15 Dec 2019 21:59:34 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)

Hi!

Leo Prikler <address@hidden> skribis:

> From 42827748e50fe20fdf23ff1137067a7d6c80c87e Mon Sep 17 00:00:00 2001
> From: Leo Prikler <address@hidden>
> Date: Wed, 4 Dec 2019 02:46:44 +0100
> Subject: [PATCH] gnu: Add lolcat
>
> * gnu/packages/games.scm (lolcat): New package.

I made the changes below to make it work with a single output.

Committed, thanks!

Ludo’.

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 1f08dd240a..c8d671bbdc 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -528,11 +528,12 @@ tired of cows, a variety of other ASCII-art messengers 
are available.")
            (delete 'configure)
            (replace 'install
              (lambda* (#:key outputs #:allow-other-keys)
-               (let ((dest (string-append path "/bin")))
+               (let* ((out  (assoc-ref outputs "out"))
+                      (dest (string-append out "/bin")))
                  (mkdir-p dest)
                  (install-file "lolcat" dest)
+                 (install-file "censor" dest)
                  #t))))))
-      (outputs (list "out" "censor"))
       (home-page "https://github.com/jaseg/lolcat";)
       (synopsis "Rainbow coloring effect for text console display")
       (description "@command{lolcat} concatenates files and streams like

reply via email to

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