mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add rust-clang-sys-1.
* gnu/packages/crates-io.scm (rust-clang-sys-1): New variable. (rust-clang-sys-0.29): Inherit from rust-clang-sys-1.
This commit is contained in:
parent
96a490a2b5
commit
c91fff483d
1 changed files with 34 additions and 6 deletions
|
@ -3458,8 +3458,41 @@ (define-public rust-ci-info-0.3
|
|||
"This package provides current CI environment information.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public rust-clang-sys-1
|
||||
(package
|
||||
(name "rust-clang-sys")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "clang-sys" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0695kfrqx7n091fzm6msbqg2q2kyhka64q08lm63f3l9d964i8cx"))))
|
||||
(build-system cargo-build-system)
|
||||
(inputs
|
||||
`(("clang" ,clang)))
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-glob" ,rust-glob-0.3)
|
||||
("rust-libc" ,rust-libc-0.2)
|
||||
("rust-libloading" ,rust-libloading-0.6))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'configure 'configure-clang
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(setenv "LIBCLANG_PATH" (string-append (assoc-ref inputs "clang")
|
||||
"/lib"))
|
||||
#t)))))
|
||||
(home-page "https://github.com/KyleMayes/clang-sys")
|
||||
(synopsis "Rust bindings for libclang")
|
||||
(description "This package provides Rust bindings for libclang.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public rust-clang-sys-0.29
|
||||
(package
|
||||
(inherit rust-clang-sys-1)
|
||||
(name "rust-clang-sys")
|
||||
(version "0.29.3")
|
||||
(source
|
||||
|
@ -3483,14 +3516,9 @@ (define-public rust-clang-sys-0.29
|
|||
(let ((clang (assoc-ref inputs "libclang")))
|
||||
(setenv "LIBCLANG_PATH"
|
||||
(string-append clang "/lib")))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("libclang" ,clang)))
|
||||
(home-page "https://github.com/KyleMayes/clang-sys")
|
||||
(synopsis "Rust bindings for libclang")
|
||||
(description
|
||||
"This package provides Rust bindings for @code{libclang}.")
|
||||
(license license:asl2.0)))
|
||||
#t)))))))
|
||||
|
||||
(define-public rust-clang-sys-0.28
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue