diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-01-15 09:58:25 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-15 09:58:46 +0200 |
commit | 5d87eb8cf64c606fe7c6744f910645b9350307e4 (patch) | |
tree | d37ea23e3ccab8807c4475938fcb892d887ff00a | |
parent | ffbefd8f91ef8a8627a7d68eab1227719fdd785c (diff) | |
download | patches-5d87eb8cf64c606fe7c6744f910645b9350307e4.tar patches-5d87eb8cf64c606fe7c6744f910645b9350307e4.tar.gz |
gnu: rust-cc-1.0: Don't hide package.
* gnu/packages/crates-io.scm (rust-cc-1.0)[arguments]: Skip build. Add
rust-rayon-1.1 to cargo-inputs. Add rust-tempdir-0.3 to
cargo-development-inputs.
[properties]: Remove field.
-rw-r--r-- | gnu/packages/crates-io.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 0746ae91cd..7b47c309b2 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -1100,13 +1100,18 @@ used in argon2rs' bench suite.") (base32 "1zxzd559dbbf1iwdzmkj7czapzccs17kqqmsj9ayijpdix5rrbld")))) (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-rayon" ,rust-rayon-1.1)) + #:cargo-development-inputs + (("rust-tempdir" ,rust-tempdir-0.3)))) (home-page "https://github.com/alexcrichton/cc-rs") (synopsis "Invoke the native C compiler") (description "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 archive to be linked into Rustcode.") - (properties '((hidden? . #t))) (license (list license:asl2.0 license:expat)))) |