~ruther/guix-local

7b2c0a841f1badedd1d3d475125db72d35e11a07 — John Khoo 11 months ago 344fbfd
gnu: lxappearance: Update to 0.6.4.

* gnu/packages/lxde.scm (lxappearance): Update to 0.6.4.
[source]: Switch to git-fetch.
[native-inputs]: Add automake, autoconf.

Change-Id: Iae0e90f73ca9f9343760337b559c4137346dc490
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
1 files changed, 10 insertions(+), 8 deletions(-)

M gnu/packages/lxde.scm
M gnu/packages/lxde.scm => gnu/packages/lxde.scm +10 -8
@@ 129,18 129,20 @@ libFM file management library.")))
(define-public lxappearance
  (package
    (name "lxappearance")
    (version "0.6.3")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://sourceforge/lxde/"
                           "LXAppearance/lxappearance-" version ".tar.xz"))
    (version "0.6.4")
    (source (origin
       (method git-fetch)
       (uri
        (git-reference
         (url "https://github.com/lxde/lxappearance")
         (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0f4bjaamfxxdr9civvy55pa6vv9dx1hjs522gjbbgx7yp1cdh8kj"))))
        (base32 "1cia6mkb3fqy3rgfprlmq0ajh15cnazdwdkv4zd19klrh4jzg4xp"))))
    (build-system gnu-build-system)
    (arguments (list #:configure-flags #~(list "--enable-gtk3")))
    (inputs (list gtk+))
    (native-inputs (list intltool pkg-config))
    (native-inputs (list automake autoconf intltool pkg-config))
    (synopsis "LXDE GTK+ theme switcher")
    (description "LXAppearance is a desktop-independent GTK+ theme switcher
able to change themes, icons, and fonts used by GTK+ applications.")