* [PATCH] gnu: dmenu: Update to 4.6.
@ 2017-01-04 0:26 Alex Griffin
2017-01-04 4:40 ` Leo Famulari
0 siblings, 1 reply; 2+ messages in thread
From: Alex Griffin @ 2017-01-04 0:26 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1: Type: text/plain, Size: 197 bytes --]
This patch updates dmenu to 4.6, which added nicer text rendering by
default and couple new dependencies related to that.
(Note my slock patch updates the copyright attribution.)
--
Alex Griffin
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-dmenu-Update-to-4.6.patch --]
[-- Type: text/x-patch; name="0001-gnu-dmenu-Update-to-4.6.patch", Size: 1951 bytes --]
From c1360e73ffa4644f90cfd848ac747852cae5f34a Mon Sep 17 00:00:00 2001
From: Alex Griffin <a@ajgrf.com>
Date: Tue, 3 Jan 2017 09:40:33 -0600
Subject: [PATCH 2/9] gnu: dmenu: Update to 4.6.
* gnu/packages/suckless.scm (dmenu): Update to 4.6.
[inputs]: Add libxft and freetype.
[arguments]: Add make-flags for finding freetype headers.
---
gnu/packages/suckless.scm | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index a501bb5f2..10785ec15 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -79,23 +79,28 @@ optimising the environment for the application in use and the task performed.")
(define-public dmenu
(package
(name "dmenu")
- (version "4.5")
+ (version "4.6")
(source (origin
(method url-fetch)
(uri (string-append "http://dl.suckless.org/tools/dmenu-"
version ".tar.gz"))
(sha256
(base32
- "0l58jpxrr80fmyw5pgw5alm5qry49aw6y049745wl991v2cdcb08"))))
+ "1cwnvamqqlgczvd5dv5rsgqbhv8kp0ddjnhmavb3q732i8028yja"))))
(build-system gnu-build-system)
(arguments
'(#:tests? #f ; no tests
#:make-flags (list "CC=gcc"
- (string-append "PREFIX=" %output))
+ (string-append "PREFIX=" %output)
+ (string-append "FREETYPEINC="
+ (assoc-ref %build-inputs "freetype")
+ "/include/freetype2"))
#:phases
(alist-delete 'configure %standard-phases)))
(inputs
- `(("libx11" ,libx11)
+ `(("freetype" ,freetype)
+ ("libxft" ,libxft)
+ ("libx11" ,libx11)
("libxinerama" ,libxinerama)))
(home-page "http://tools.suckless.org/dmenu/")
(synopsis "Dynamic menu")
--
2.11.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] gnu: dmenu: Update to 4.6.
2017-01-04 0:26 [PATCH] gnu: dmenu: Update to 4.6 Alex Griffin
@ 2017-01-04 4:40 ` Leo Famulari
0 siblings, 0 replies; 2+ messages in thread
From: Leo Famulari @ 2017-01-04 4:40 UTC (permalink / raw)
To: Alex Griffin; +Cc: guix-devel
On Tue, Jan 03, 2017 at 06:26:24PM -0600, Alex Griffin wrote:
> This patch updates dmenu to 4.6, which added nicer text rendering by
> default and couple new dependencies related to that.
>
> (Note my slock patch updates the copyright attribution.)
> --
> Alex Griffin
> From c1360e73ffa4644f90cfd848ac747852cae5f34a Mon Sep 17 00:00:00 2001
> From: Alex Griffin <a@ajgrf.com>
> Date: Tue, 3 Jan 2017 09:40:33 -0600
> Subject: [PATCH 2/9] gnu: dmenu: Update to 4.6.
>
> * gnu/packages/suckless.scm (dmenu): Update to 4.6.
> [inputs]: Add libxft and freetype.
> [arguments]: Add make-flags for finding freetype headers.
Thanks, pushed!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-01-04 4:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-04 0:26 [PATCH] gnu: dmenu: Update to 4.6 Alex Griffin
2017-01-04 4:40 ` Leo Famulari
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).