mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: rust-gcc-0.3: Don't hide package.
* gnu/packages/crates-io.scm (rust-gcc-0.3): Don't inherit from rust-cc-1. [arguments]: Skip tests. Add rust-rayon-0.8 to cargo-inputs, rust-tempdir-0.3 to cargo-development-inputs. [properties]: Remove field.
This commit is contained in:
parent
9f86a6daa1
commit
bf9d5adef9
1 changed files with 7 additions and 3 deletions
|
@ -8333,25 +8333,29 @@ derived from an internal hasher used in FireFox and Rustc.")
|
||||||
|
|
||||||
(define-public rust-gcc-0.3
|
(define-public rust-gcc-0.3
|
||||||
(package
|
(package
|
||||||
(inherit rust-cc-1)
|
|
||||||
(name "rust-gcc")
|
(name "rust-gcc")
|
||||||
(version "0.3.55")
|
(version "0.3.55")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "gcc" version))
|
(uri (crate-uri "gcc" version))
|
||||||
(file-name (string-append name "-" version ".crate"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1hng1sajn4r67hndvhjysswz8niayjwvcj42zphpxzhbz89kjpwg"))))
|
"1hng1sajn4r67hndvhjysswz8niayjwvcj42zphpxzhbz89kjpwg"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; gcc-test folder missing from release tarball.
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-rayon" ,rust-rayon-0.8))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-tempdir" ,rust-tempdir-0.3))))
|
||||||
(home-page "https://github.com/alexcrichton/cc-rs")
|
(home-page "https://github.com/alexcrichton/cc-rs")
|
||||||
(synopsis "Library to compile C/C++ code into a Rust library/application")
|
(synopsis "Library to compile C/C++ code into a Rust library/application")
|
||||||
(description
|
(description
|
||||||
"This package provides a build-time dependency for Cargo build scripts to
|
"This package provides a build-time dependency for Cargo build scripts to
|
||||||
assist in invoking the native C compiler to compile native C code into a static
|
assist in invoking the native C compiler to compile native C code into a static
|
||||||
archive to be linked into Rustcode.")
|
archive to be linked into Rustcode.")
|
||||||
(properties '((hidden? . #t)))
|
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue