mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: libxfce4windowing: Switch to git source.
* gnu/packages/xfce.scm (libxfce4windowing)[source]: Switch to git-fetch. [home-page]: Set to docs.xfce.org. [arguments]: Add "--enable-gtk-doc" to configure-flags. [inputs]: Add wlr-protocols. [native-inputs]: Add xfce4-dev-tools. Change-Id: I995433864b2de45cabcafd541ef39af4c6aab320 Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
571d45937c
commit
ac54399fa5
1 changed files with 17 additions and 12 deletions
|
@ -411,23 +411,28 @@ (define-public libxfce4windowing
|
|||
(package
|
||||
(name "libxfce4windowing")
|
||||
(version "4.20.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://archive.xfce.org/src/xfce/"
|
||||
name "/" (version-major+minor version) "/"
|
||||
name "-" version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"0s4zjf7bwzski7zsmb7i5frd4xr8w7ng8gn8285b0vv0g4frpwjn"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.xfce.org/xfce/libxfce4windowing")
|
||||
(commit (string-append name "-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "158jhw5kq3dzmgmy9wr9fgspwcdq84r6hjfnvbn48wx9d2q9pwdp"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs (list pkg-config xfce4-dev-tools))
|
||||
(propagated-inputs (list gtk+)) ; required by libxfce4windowing-0.pc
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags #~(list "--enable-gtk-doc")))
|
||||
(native-inputs (list xfce4-dev-tools))
|
||||
(propagated-inputs (list gtk+)) ;required by libxfce4windowing-0.pc
|
||||
(inputs (list libdisplay-info
|
||||
libwnck
|
||||
libxrandr
|
||||
wayland
|
||||
wayland-protocols))
|
||||
(home-page "https://www.xfce.org/")
|
||||
wayland-protocols
|
||||
wlr-protocols))
|
||||
(home-page "https://docs.xfce.org/xfce/libxfce4windowing/")
|
||||
(synopsis "Windowing concept abstraction library for X11 and Wayland")
|
||||
(description
|
||||
"Libxfce4windowing is an abstraction library that attempts to present
|
||||
|
|
Loading…
Reference in a new issue