unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: "Sergio Pastor Pérez" <sergio.pastorperez@outlook.es>
To: 67515@debbugs.gnu.org
Cc: "Sergio Pastor Pérez" <sergio.pastorperez@outlook.es>,
	"Efraim Flashner" <efraim@flashner.co.il>
Subject: [bug#67515] [PATCH 09/91] gnu: Add rust-gdk-pixbuf-0.18.
Date: Tue, 28 Nov 2023 22:11:47 +0100	[thread overview]
Message-ID: <DU2P193MB21328EAF0DD850AF71202DB2F3BCA@DU2P193MB2132.EURP193.PROD.OUTLOOK.COM> (raw)
In-Reply-To: <cover.1701202944.git.sergio.pastorperez@outlook.es>

* gnu/packages/crates-gtk.scm (rust-gdk-pixbuf-0.18): New variable.

Change-Id: I33e260ac3e11af9d37b951c0aded8c49b4a07116
---
 gnu/packages/crates-gtk.scm | 40 ++++++++++++++++++++++++++++---------
 1 file changed, 31 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/crates-gtk.scm b/gnu/packages/crates-gtk.scm
index 4f844ed6a6..2be6c9e60d 100644
--- a/gnu/packages/crates-gtk.scm
+++ b/gnu/packages/crates-gtk.scm
@@ -510,8 +510,38 @@ (define-public rust-gdk-0.12
        #:cargo-development-inputs
        (("rust-gir-format-check" ,rust-gir-format-check-0.1))))))
 
+(define-public rust-gdk-pixbuf-0.18
+  (package
+    (name "rust-gdk-pixbuf")
+    (version "0.18.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "gdk-pixbuf" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1wy68zaxd1914qayjz4jn6k0i2759sx7k26hcmmma7d8fgnw5jdv"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:tests? #f ; `Errors` doesn't implement `std::fmt::Display`
+       #:cargo-inputs
+       (("rust-gdk-pixbuf-sys" ,rust-gdk-pixbuf-sys-0.18)
+        ("rust-gio" ,rust-gio-0.18)
+        ("rust-glib" ,rust-glib-0.18)
+        ("rust-libc" ,rust-libc-0.2)
+        ("rust-once-cell" ,rust-once-cell-1))
+       #:cargo-development-inputs
+       (("rust-gir-format-check" ,rust-gir-format-check-0.1))))
+    (native-inputs (list pkg-config))
+    (inputs (list glib gdk-pixbuf))
+    (home-page "https://gtk-rs.org/")
+    (synopsis "Rust bindings for the GdkPixbuf library")
+    (description "Rust bindings for the @code{GdkPixbuf} library")
+    (license license:expat)))
+
 (define-public rust-gdk-pixbuf-0.17
   (package
+    (inherit rust-gdk-pixbuf-0.18)
     (name "rust-gdk-pixbuf")
     (version "0.17.10")
     (source
@@ -521,7 +551,6 @@ (define-public rust-gdk-pixbuf-0.17
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
         (base32 "05q7ajsp2z8xi355h26k7lvq7n3lj9xm61vhn045g3238v46npb9"))))
-    (build-system cargo-build-system)
     (arguments
      `(#:tests? #f      ; `Errors` doesn't implement `std::fmt::Display`
        #:cargo-inputs
@@ -533,14 +562,7 @@ (define-public rust-gdk-pixbuf-0.17
         ("rust-once-cell" ,rust-once-cell-1))
        #:cargo-development-inputs
        (("rust-gir-format-check" ,rust-gir-format-check-0.1))))
-    (native-inputs
-     (list pkg-config))
-    (inputs
-     (list gdk-pixbuf))
-    (home-page "https://gtk-rs.org/")
-    (synopsis "Rust bindings for the GdkPixbuf library")
-    (description "Rust bindings for the @code{GdkPixbuf} library")
-    (license license:expat)))
+    (inputs (list gdk-pixbuf))))
 
 (define-public rust-gdk-pixbuf-0.15
   (package
-- 
2.41.0





  parent reply	other threads:[~2023-11-28 21:16 UTC|newest]

Thread overview: 94+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <cover.1701202944.git.sergio.pastorperez@outlook.es>
2023-11-28 21:11 ` [bug#67515] [PATCH 01/91] gnu: Add blueprint-compiler-next Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 02/91] gnu: Add rust-glib-sys-0.18 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 03/91] gnu: Add rust-gobject-sys-0.18 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 04/91] gnu: Add rust-gio-sys-0.18 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 05/91] gnu: Add rust-glib-macros-0.18 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 06/91] gnu: Add rust-glib-0.18 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 07/91] gnu: Add rust-gio-0.18 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 08/91] gnu: Add rust-gdk-pixbuf-sys-0.18 Sergio Pastor Pérez
2023-11-28 21:11 ` Sergio Pastor Pérez [this message]
2023-11-28 21:11 ` [bug#67515] [PATCH 10/91] gnu: Add rust-graphene-sys-0.18 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 11/91] gnu: Add rust-graphene-rs-0.18 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 12/91] gnu: Add rust-gl-loader-0.1 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 13/91] gnu: Add rust-pango-sys-0.18 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 14/91] gnu: Add rust-pango-0.18 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 15/91] gnu: Add rust-const-random-macro-0.1.15 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 16/91] gnu: Add rust-const-random-0.1.15 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 17/91] gnu: Add rust-proc-status-0.1 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 18/91] gnu: Add rust-ordermap-0.2 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 19/91] gnu: Add rust-quick-xml-0.30 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 20/91] gnu: Add rust-rstest-macros-0.17 Sergio Pastor Pérez
2023-11-28 21:11 ` [bug#67515] [PATCH 21/91] gnu: Add rust-spinning-0.1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 22/91] gnu: Add rust-to-method-1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 23/91] gnu: Add rust-rustc-hash-1.0 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 24/91] gnu: Add rust-rstest-0.17 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 25/91] gnu: Add rust-minimad-0.12 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 26/91] gnu: Add rust-minidl-0.1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 27/91] gnu: Add rust-libudev-sys-0.1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 28/91] gnu: Add rust-byte-slice-cast-0.3 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 29/91] gnu: Add rust-file-size-1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 30/91] gnu: Add rust-assert2-macros-0.3 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 31/91] gnu: Add rust-cli-log-2 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 32/91] gnu: Add rust-assert2-0.3 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 33/91] gnu: Add rust-coverage-helper-0.1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 34/91] gnu: Add rust-dlv-list-0.5 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 35/91] gnu: Add rust-errno-sys-0.1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 36/91] gnu: Add rust-libc-0.1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 37/91] gnu: Add rust-khronos-0.1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 38/91] gnu: Add rust-hashbrown-0.7 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 39/91] gnu: Add rust-egl-0.2 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 40/91] gnu: Add rust-ordered-multimap-0.6 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 41/91] gnu: Add rust-dlib-0.5.1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 42/91] gnu: Add rust-wayland-sys-0.31 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 43/91] gnu: Add rust-wayland-backend-0.1.3 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 44/91] gnu: Add rust-textdistance-1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 45/91] gnu: Add rust-rust-ini-0.19 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 46/91] gnu: Add rust-coolor-0.5.0 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 47/91] gnu: Add rust-deser-hjson-1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 48/91] gnu: Add rust-crokey-proc-macros-0.4 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 49/91] gnu: Add rust-crokey-0.4 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 50/91] gnu: Add rust-xcb-0.10 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 51/91] gnu: Add rust-x11-clipboard-0.5.3 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 52/91] gnu: Add rust-termux-clipboard-0.1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 53/91] gnu: Add rust-terminal-clipboard-0.3 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 54/91] gnu: Add rust-termimad-0.23 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 55/91] gnu: Add rust-core-affinity-0.8 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 56/91] gnu: Add rust-raw-sync-0.1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 57/91] gnu: Add rust-raw-cpuid-11 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 58/91] gnu: Add rust-drm-fourcc-2 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 59/91] gnu: Add rust-drm-sys-0.4 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 60/91] gnu: Add rust-drm-ffi-0.5 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 61/91] gnu: Add rust-drm-0.9 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 62/91] gnu: Add rust-intmap-0.7 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 63/91] gnu: Add rust-interprocess-1 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 64/91] gnu: Add rust-rustbus-derive-0.5 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 65/91] gnu: Add rust-rustbus-0.19 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 66/91] gnu: Add rust-windows-x86-64-msvc-0.34 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 67/91] gnu: Add rust-windows-x86-64-gnu-0.34 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 68/91] gnu: Add rust-windows-tokens-0.34 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 69/91] gnu: Add rust-windows-interface-0.34 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 70/91] gnu: Add rust-windows-implement-0.34 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 71/91] gnu: Add rust-windows-i686-msvc-0.34 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 72/91] gnu: Add rust-windows-i686-gnu-0.34 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 73/91] gnu: Add rust-windows-aarch64-msvc-0.34 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 74/91] gnu: Add rust-windows-0.34 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 75/91] gnu: Add rust-win-sys-0.3 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 76/91] gnu: Add rust-shared-memory-extended-0.13 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 77/91] gnu: Add rust-sysinfo-0.29 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 78/91] gnu: Add rust-cairo-sys-rs-0.18 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 79/91] gnu: Add rust-cairo-rs-0.18 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 80/91] gnu: Add rust-gbm-sys-0.2 Sergio Pastor Pérez
2023-11-28 21:12 ` [bug#67515] [PATCH 81/91] gnu: Add rust-gbm-0.12 Sergio Pastor Pérez
2023-11-28 21:13 ` [bug#67515] [PATCH 82/91] gnu: Add rust-gdk4-sys-0.7 Sergio Pastor Pérez
2023-11-28 21:13 ` [bug#67515] [PATCH 83/91] gnu: Add rust-gdk4-0.7 Sergio Pastor Pérez
2023-11-28 21:13 ` [bug#67515] [PATCH 84/91] gnu: Add rust-gsk4-sys-0.7 Sergio Pastor Pérez
2023-11-28 21:13 ` [bug#67515] [PATCH 85/91] gnu: Add rust-gsk4-0.7 Sergio Pastor Pérez
2023-11-28 21:13 ` [bug#67515] [PATCH 86/91] gnu: Add rust-gtk4-sys-0.7 Sergio Pastor Pérez
2023-11-28 21:13 ` [bug#67515] [PATCH 87/91] gnu: Add rust-gtk4-macros-0.7 Sergio Pastor Pérez
2023-11-28 21:13 ` [bug#67515] [PATCH 88/91] gnu: Add rust-gtk4-0.7 Sergio Pastor Pérez
2023-11-28 21:13 ` [bug#67515] [PATCH 89/91] gnu: Add rust-libadwaita-sys-0.5 Sergio Pastor Pérez
2023-11-28 21:13 ` [bug#67515] [PATCH 90/91] gnu: Add rust-libadwaita-0.5 Sergio Pastor Pérez
2023-11-28 21:13 ` [bug#67515] [PATCH 91/91] gnu: Add mission-center Sergio Pastor Pérez
2023-12-26 11:43   ` Efraim Flashner
2023-12-28 12:32     ` Sergio Pastor Pérez
2024-04-02 15:24       ` Greg Hogan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=DU2P193MB21328EAF0DD850AF71202DB2F3BCA@DU2P193MB2132.EURP193.PROD.OUTLOOK.COM \
    --to=sergio.pastorperez@outlook.es \
    --cc=67515@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).