Mark H Weaver writes: > Eric Dvorsak <e...@dvorsak.fr> writes: > >> +(define-public xcb-util-cursor >> + (package >> + (name "xcb-util-cursor") >> + (version "0.1.2") >> + (source (origin >> + (method url-fetch) >> + (uri (string-append "http://xcb.freedesktop.org/dist/" >> + "xcb-util-cursor-" version ".tar.gz")) >> + (sha256 >> + (base32 >> + "0bm0mp99abdfb6v4v60hq3msvk67b2x9ml3kbx5y2g18xdhm3rdr")))) >> + (build-system gnu-build-system) >> + (native-inputs >> + `(("m4" ,m4) >> + ("pkg-config" ,pkg-config))) >> + (inputs >> + `(("libxcb" ,libxcb) >> + ("xcb-util-renderutil" ,xcb-util-renderutil) >> + ("xcb-util-image" ,xcb-util-image))) >> + (home-page "http://cgit.freedesktop.org/xcb/util-cursor/") >> + (synopsis "Port of libxcursor") >> + (description "Port of libxcursor.") > > The synopsis and description seem like stubs. Can you make them better?
There is no description on freedesktop.org and in the readme either. Should I just add the description of libxcursor itself ? Which is "Xorg Cursor management library" for both the synospis and the description > > Mark Eric