diff options
author | Mark H Weaver <mhw@netris.org> | 2014-12-19 15:21:17 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-12-19 23:28:01 -0500 |
commit | b3ba0379eb3fa12e87efb08ceb3c7b1195d0a2b0 (patch) | |
tree | c251952f4bee76fffd83bdece9d9731380a12c6c /gnu/packages/xorg.scm | |
parent | 9489b6ea39fbe1d77390183df1a0fd1513b82abc (diff) | |
download | guix-b3ba0379eb3fa12e87efb08ceb3c7b1195d0a2b0.tar guix-b3ba0379eb3fa12e87efb08ceb3c7b1195d0a2b0.tar.gz |
gnu: xwd: Update to 1.0.6.
* gnu/packages/xorg.scm (xwd): Update to 1.0.6. Add libxkbfile to inputs.
Diffstat (limited to 'gnu/packages/xorg.scm')
-rw-r--r-- | gnu/packages/xorg.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 7cc773312c..6c2fb49f77 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -3755,20 +3755,21 @@ kernel mode setting (KMS).") (define-public xwd (package (name "xwd") - (version "1.0.5") + (version "1.0.6") (source (origin (method url-fetch) (uri (string-append - "mirror://xorg/X11R7.7/src/everything/xwd-" + "mirror://xorg/individual/app/xwd-" version ".tar.bz2")) (sha256 (base32 - "0fkg6msy2zg7rda2rpxb7j6vmrdmqmk72xsxnyhz97196ykjnx82")))) + "0ybx48agdvjp9lgwvcw79r1x6jbqbyl3fliy3i5xwy4d4si9dcrv")))) (build-system gnu-build-system) (inputs `(("libxt" ,libxt) + ("libxkbfile" ,libxkbfile) ("xproto" ,xproto))) (native-inputs `(("pkg-config" ,pkg-config))) |