gnu: libwpe: Update package definition.
* gnu/packages/webkit.scm (libwpe): Update package definition. [native-inputs]: Add python-wrapper. [synopsis]: Modify. [description]: Modify. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
acc8a0c10b
commit
eaa147c488
1 changed files with 14 additions and 15 deletions
|
@ -67,29 +67,28 @@
|
||||||
(package
|
(package
|
||||||
(name "libwpe")
|
(name "libwpe")
|
||||||
(version "1.6.0")
|
(version "1.6.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://wpewebkit.org/releases/libwpe-"
|
(method url-fetch)
|
||||||
version ".tar.xz"))
|
(uri
|
||||||
(sha256
|
(string-append "https://wpewebkit.org/releases/libwpe-"
|
||||||
(base32
|
version ".tar.xz"))
|
||||||
"141w35b488jjhanl3nrm0awrbcy6hb579fk8n9vbpx07m2wcd1rm"))))
|
(sha256
|
||||||
|
(base32 "141w35b488jjhanl3nrm0awrbcy6hb579fk8n9vbpx07m2wcd1rm"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ;no tests
|
`(#:tests? #f)) ;no tests
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)
|
||||||
|
("python" ,python-wrapper)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("mesa" ,mesa)))
|
`(("mesa" ,mesa)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(;; In Requires of wpe-1.0.pc.
|
`(("libxkbcommon" ,libxkbcommon)))
|
||||||
("libxkbcommon" ,libxkbcommon)))
|
(synopsis "General-purpose library for WPE")
|
||||||
|
(description "LibWPE is general-purpose library specifically developed for
|
||||||
|
the WPE-flavored port of WebKit.")
|
||||||
(home-page "https://wpewebkit.org/")
|
(home-page "https://wpewebkit.org/")
|
||||||
(synopsis "Platform agnostic WebKit interfaces")
|
|
||||||
(description
|
|
||||||
"@code{libwpe} is a small library that defines programming interfaces
|
|
||||||
for use by WebKit, and provides a mechanism for loading a platform-specific
|
|
||||||
backend which implements them.")
|
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public wpebackend-fdo
|
(define-public wpebackend-fdo
|
||||||
|
|
Reference in a new issue