diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:53:08 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:48 +0000 |
commit | d8611090b941e5c3afb10416db91c99ef15c5dbb (patch) | |
tree | d4a500fd36fa5dac63927854bfbef5b27e09abe3 | |
parent | 1c9a62192e50b44ab69f53e08148060be07d345a (diff) | |
download | guix-d8611090b941e5c3afb10416db91c99ef15c5dbb.tar.gz guix-d8611090b941e5c3afb10416db91c99ef15c5dbb.zip |
gnu: Add xcffibgen.
* gnu/packages/xorg.scm (xcffibgen): New variable.
Change-Id: Ibcbacdfdeaa657ec1ded7dcc09c10c7fc2aa6717
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/xorg.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 7849fbee09..e725b5c843 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -1693,6 +1693,39 @@ mechanism than copying the contents of the source pixmap.") network-transparent printing system.") (license license:x11))) +(define xcffibgen + (package + (name "xcffibgen") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tych0/xcffib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wz6zlaqsmpw7ahaadpd7m5n5c5b2ya30xwsana4j5ljygdvzqp9")))) + (build-system haskell-build-system) + (native-inputs + (list ghc-hunit ghc-test-framework ghc-test-framework-hunit)) + (inputs + (list libxcb + ghc + ghc-filemanip + ghc-split + ghc-language-python + ghc-attoparsec + ghc-either + ghc-optparse-applicative + ghc-xcb-types)) + (home-page "https://github.com/tych0/xcffib") + (synopsis "Build tool for python-xcbffib bindings") + (description + "This is an internal package that provides a build tool to +generate code for the @code{python-xcbffib} package.") + (license license:expat))) + (define-public randrproto (package (name "randrproto") |