guix-patches
[Top][All Lists]
Advanced

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

[bug#68554] [PATCH v3 4/6] gnu: Add rust-rustc-demangle-capi-0.1.


From: Efraim Flashner
Subject: [bug#68554] [PATCH v3 4/6] gnu: Add rust-rustc-demangle-capi-0.1.
Date: Fri, 19 Jan 2024 11:38:55 +0200

This package looks good to me

On Thu, Jan 18, 2024 at 11:40:42PM -0500, Maxim Cournoyer wrote:
> * gnu/packages/crates-io.scm (rust-rustc-demangle-capi-0.1): New variable.
> 
> Change-Id: I98afb19ed4bdbcb9107a1ab30af49b055802b8b0
> ---
> 
> (no changes since v1)
> 
>  gnu/packages/crates-io.scm | 31 +++++++++++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
> 
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 1bfd8fb143..43d9e3cd60 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -64836,6 +64836,37 @@ (define-public rust-rustc-demangle-0.1
>      (license (list license:asl2.0
>                     license:expat))))
>  
> +(define-public rust-rustc-demangle-capi-0.1
> +  (package
> +    (name "rust-rustc-demangle-capi")
> +    (version "0.1.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (crate-uri "rustc-demangle-capi" version))
> +       (file-name (string-append name "-" version ".tar.gz"))
> +       (sha256
> +        (base32 "1s2g4z1yrh1sxl4qkmpd19ss3x2lr9115vbir7pnhgy63r1d63yv"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +     (list
> +      #:cargo-inputs `(("rust-rustc-demangle" ,rust-rustc-demangle-0.1))
> +      #:phases
> +      #~(modify-phases %standard-phases
> +          (add-after 'install 'install-c-library
> +            (lambda _
> +              (install-file
> +               (car (find-files "." "^rustc_demangle\\.h$"))
> +               (string-append #$output "/include"))
> +              (install-file
> +               (car (find-files "." "^librustc_demangle.so$"))
> +               (string-append #$output "/lib")))))))
> +    (home-page "https://github.com/alexcrichton/rustc-demangle";)
> +    (synopsis "C API for the @code{rustc-demangle} crate")
> +    (description "This package provides a C API library for the
> +@code{rustc-demangle} crate.")
> +    (license (list license:expat license:asl2.0))))
> +
>  (define-public rust-rustc-hash-1
>    (package
>      (name "rust-rustc-hash")
> -- 
> 2.41.0
> 
> 
> 

-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

Attachment: signature.asc
Description: PGP signature


reply via email to

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