guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#57702] [PATCH v2 1/8] gnu: Add rust-unic-emoji-char-0.9.


From: (
Subject: [bug#57702] [PATCH v2 1/8] gnu: Add rust-unic-emoji-char-0.9.
Date: Fri, 09 Sep 2022 21:30:22 +0100

Hi VesselWave,

On Fri Sep 9, 2022 at 5:03 PM BST, VesselWave via Guix-patches via wrote:
> +(define-public rust-unic-emoji-char-0.9
> + (package
> + (name "rust-unic-emoji-char")
> + (version "0.9.0")
> + (source (origin
> + (method url-fetch)
> + (uri (crate-uri "unic-emoji-char" version))
> + (file-name (string-append name "-" version ".tar.gz"))
> + (sha256
> + (base32
> + "0ka9fr7s6lv0z43r9xphg9injn35pfxf9g9q18ki0wl9d0g241qb"))))
> + (build-system cargo-build-system)
> + (arguments
> + `(#:skip-build? #t
> + #:cargo-inputs (("rust-unic-property-char" ,rust-unic-char-property-0.9)
> + ("rust-unic-char-range" ,rust-unic-char-range-0.9)
> + ("rust-unic-ucd-version" ,rust-unic-ucd-version-0.9))))
> + (home-page "https://github.com/open-i18n/rust-unic/";)
> + (synopsis "Emoji character properties for UNIC")
> + (description "This package provides emoji character properties and for
> +the Unicode and Internationalization Crates (UNIC) project.")
> + (license (list license:expat license:asl2.0))))

That's some... interesting indentation you've got going on there :)
Could you please change this patchset to match the project standard
like this?

> +(define-public rust-unic-emoji-char-0.9
> +  (package
> +    (name "rust-unic-emoji-char")
> +    (version "0.9.0")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (crate-uri "unic-emoji-char" version))
> +              (file-name (string-append name "-" version ".tar.gz"))
> +              (sha256
> +               (base32
> +                "0ka9fr7s6lv0z43r9xphg9injn35pfxf9g9q18ki0wl9d0g241qb"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +     (list #:skip-build? #t
         ^^^^ note change of `(...) to (list ...), which is now the standard
> +           #:cargo-inputs `(("rust-unic-property-char" 
> ,rust-unic-char-property-0.9)
                             ^ note the quoting of cargo-inputs, due to the 
change
                             ^ to (list ...)
> +                            ("rust-unic-char-range" 
> ,rust-unic-char-range-0.9)
> +                            ("rust-unic-ucd-version" 
> ,rust-unic-ucd-version-0.9))))
> +    (home-page "https://github.com/open-i18n/rust-unic";)
> +    (synopsis "Emoji character properties for UNIC")
> +    (description
> +     "This package provides emoji character properties and for
> +the Unicode and Internationalization Crates (UNIC) project.")
> +    (license (list license:expat license:asl2.0))))

    -- (





reply via email to

[Prev in Thread] Current Thread [Next in Thread]