From: Alex Griffin <a@ajgrf.com>
To: guix-devel@gnu.org
Subject: [PATCH] gnu: dwm: Update to 6.1.
Date: Tue, 03 Jan 2017 18:26:31 -0600 [thread overview]
Message-ID: <1483489591.849142.836542857.28DCCAEE@webmail.messagingengine.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 167 bytes --]
This patch updates dwm to 6.1, which adds nicer text rendering in the
same manner as dmenu.
(Note my slock patch updates the copyright attribution.)
--
Alex Griffin
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-dwm-Update-to-6.1.patch --]
[-- Type: text/x-patch; name="0001-gnu-dwm-Update-to-6.1.patch", Size: 1779 bytes --]
From 29b5e89b62d490583d4febca4f28426ab1d819ca Mon Sep 17 00:00:00 2001
From: Alex Griffin <a@ajgrf.com>
Date: Tue, 3 Jan 2017 09:43:46 -0600
Subject: [PATCH 3/9] gnu: dwm: Update to 6.1.
* gnu/packages/suckless.scm (dwm): Update to 6.1.
[inputs]: Add libxft and freetype.
[arguments]: Add make-flags for finding freetype headers.
---
gnu/packages/suckless.scm | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index 10785ec15..a00420312 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -41,16 +41,19 @@
(define-public dwm
(package
(name "dwm")
- (version "6.0")
+ (version "6.1")
(source (origin
(method url-fetch)
(uri (string-append "http://dl.suckless.org/dwm/dwm-"
version ".tar.gz"))
(sha256
- (base32 "0mpbivy9j80l1jqq4bd4g4z8s5c54fxrjj44avmfwncjwqylifdj"))))
+ (base32 "1zkmwb6df6m254shx06ly90c0q4jl70skk1pvkixpb7hcxhwbxn2"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f
+ #:make-flags (list (string-append "FREETYPEINC="
+ (assoc-ref %build-inputs "freetype")
+ "/include/freetype2"))
#:phases
(alist-replace
'configure
@@ -66,7 +69,9 @@
(string-append "DESTDIR=" out) "PREFIX="))))
%standard-phases))))
(inputs
- `(("libx11" ,libx11)
+ `(("freetype" ,freetype)
+ ("libx11" ,libx11)
+ ("libxft" ,libxft)
("libxinerama" ,libxinerama)))
(home-page "http://dwm.suckless.org/")
(synopsis "Dynamic window manager")
--
2.11.0
next reply other threads:[~2017-01-04 0:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-04 0:26 Alex Griffin [this message]
2017-01-04 4:40 ` [PATCH] gnu: dwm: Update to 6.1 Leo Famulari
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1483489591.849142.836542857.28DCCAEE@webmail.messagingengine.com \
--to=a@ajgrf.com \
--cc=guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.