[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: gnu: lirc: Update to 0.9.3.
From: |
Alex Kost |
Subject: |
01/04: gnu: lirc: Update to 0.9.3. |
Date: |
Sun, 04 Oct 2015 16:25:16 +0000 |
alezost pushed a commit to branch master
in repository guix.
commit 678932aa7043436be098e0cb1c82ef463f26af10
Author: Alex Kost <address@hidden>
Date: Fri Oct 2 16:53:24 2015 +0300
gnu: lirc: Update to 0.9.3.
* gnu/packages/lirc.scm (lirc): Update to 0.9.3.
[native-inputs]: Add "libxslt".
---
gnu/packages/lirc.scm | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/lirc.scm b/gnu/packages/lirc.scm
index c070e1a..f8828d3 100644
--- a/gnu/packages/lirc.scm
+++ b/gnu/packages/lirc.scm
@@ -24,26 +24,28 @@
#:use-module (gnu packages)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages linux)
+ #:use-module (gnu packages xml)
#:use-module (gnu packages xorg)
#:use-module (gnu packages python))
(define-public lirc
(package
(name "lirc")
- (version "0.9.2a")
+ (version "0.9.3")
(source (origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/lirc/lirc-"
version ".tar.bz2"))
(sha256
(base32
- "011nwpxm5d12rsapljg3pjf9pgb0j8ngmc3zg69q4kv61hkx2zim"))
+ "19c6ldjsdnk1md66q3nb035ja1xj217k8iabhxpsb8rs10a6kwi6"))
(patches (list (search-patch "lirc-localstatedir.patch")))))
(build-system gnu-build-system)
(arguments
'(#:configure-flags '("--localstatedir=/var")))
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ `(("pkg-config" ,pkg-config)
+ ("libxslt" ,libxslt)))
(inputs
`(("libx11" ,libx11)
("alsa-lib" ,alsa-lib)