all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#75060] [PATCH rust-team 1/5] gnu: rust-x11-clipboard-0.9: Order alphabetically.
@ 2024-12-24 10:02 Herman Rimm via Guix-patches via
  2024-12-24 10:11 ` [bug#75060] [PATCH rust-team 2/5] gnu: rust-x11-clipboard-0.8: " Herman Rimm via Guix-patches via
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Herman Rimm via Guix-patches via @ 2024-12-24 10:02 UTC (permalink / raw)
  To: 75060; +Cc: Efraim Flashner

* gnu/packages/crates-graphics.scm (rust-x11-clipboard-0.9): Order.

Change-Id: I07a80145fd6c2b7cea983a2c6b083ea0d1f9e800
---
 gnu/packages/crates-graphics.scm | 66 ++++++++++++++++----------------
 1 file changed, 33 insertions(+), 33 deletions(-)

diff --git a/gnu/packages/crates-graphics.scm b/gnu/packages/crates-graphics.scm
index e521750e73..d1626a2b4b 100644
--- a/gnu/packages/crates-graphics.scm
+++ b/gnu/packages/crates-graphics.scm
@@ -6446,6 +6446,39 @@ (define-public rust-x11-2
     (description "This crate provides X11 library bindings for Rust.")
     (license license:expat)))
 
+(define-public rust-x11-clipboard-0.9
+  (package
+    (name "rust-x11-clipboard")
+    (version "0.9.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "x11-clipboard" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "18rmsm0lrcc4hy2wqs7gn90czv59sv5bj07bbf76nfbysyrp8bb6"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-test-flags '("--release" "--"
+                            "--skip=tests::should_work_but_does_not")
+       #:cargo-inputs (("rust-libc" ,rust-libc-0.2)
+                       ("rust-x11rb" ,rust-x11rb-0.13))
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'pre-check
+           (lambda* (#:key native-inputs inputs #:allow-other-keys)
+             ;; Most tests require an X server.
+             (let ((xvfb (search-input-file (or native-inputs inputs)
+                                            "bin/Xvfb"))
+                   (display ":1"))
+               (setenv "DISPLAY" display)
+               (system (string-append xvfb " " display " &"))))))))
+    (native-inputs (list xorg-server-for-tests))
+    (home-page "https://github.com/quininer/x11-clipboard")
+    (synopsis "X11 clipboard support for Rust")
+    (description "This package provides x11 clipboard support for Rust.")
+    (license license:expat)))
+
 (define-public rust-x11rb-0.13
   (package
     (name "rust-x11rb")
@@ -6644,39 +6677,6 @@ (define-public rust-x11rb-protocol-0.10
        #:cargo-development-inputs
        (("rust-criterion" ,rust-criterion-0.3))))))
 
-(define-public rust-x11-clipboard-0.9
-  (package
-    (name "rust-x11-clipboard")
-    (version "0.9.3")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "x11-clipboard" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32 "18rmsm0lrcc4hy2wqs7gn90czv59sv5bj07bbf76nfbysyrp8bb6"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-test-flags '("--release" "--"
-                            "--skip=tests::should_work_but_does_not")
-       #:cargo-inputs (("rust-libc" ,rust-libc-0.2)
-                       ("rust-x11rb" ,rust-x11rb-0.13))
-       #:phases
-       (modify-phases %standard-phases
-         (add-before 'check 'pre-check
-           (lambda* (#:key native-inputs inputs #:allow-other-keys)
-             ;; Most tests require an X server.
-             (let ((xvfb (search-input-file (or native-inputs inputs)
-                                            "bin/Xvfb"))
-                   (display ":1"))
-               (setenv "DISPLAY" display)
-               (system (string-append xvfb " " display " &"))))))))
-    (native-inputs (list xorg-server-for-tests))
-    (home-page "https://github.com/quininer/x11-clipboard")
-    (synopsis "X11 clipboard support for Rust")
-    (description "This package provides x11 clipboard support for Rust.")
-    (license license:expat)))
-
 (define-public rust-x11-clipboard-0.8
   (package
     (inherit rust-x11-clipboard-0.9)

base-commit: e793fbbd5282713fe5c9aad512c5784b0afff175
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-12-24 12:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-24 10:02 [bug#75060] [PATCH rust-team 1/5] gnu: rust-x11-clipboard-0.9: Order alphabetically Herman Rimm via Guix-patches via
2024-12-24 10:11 ` [bug#75060] [PATCH rust-team 2/5] gnu: rust-x11-clipboard-0.8: " Herman Rimm via Guix-patches via
2024-12-24 10:11 ` [bug#75060] [PATCH rust-team 3/5] gnu: rust-x11-clipboard-0.7: " Herman Rimm via Guix-patches via
2024-12-24 10:11 ` [bug#75060] [PATCH rust-team 4/5] gnu: rust-x11-dl-2: " Herman Rimm via Guix-patches via
2024-12-24 10:11 ` [bug#75060] [PATCH rust-team 5/5] gnu: rust-xkb-0.3: " Herman Rimm via Guix-patches via
2024-12-24 12:01 ` bug#75060: [PATCH rust-team 1/5] gnu: rust-x11-clipboard-0.9: " Efraim Flashner

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.