diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-01-16 17:11:26 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-16 19:36:23 +0200 |
commit | a9b5fe4d86d8ab1c1086e9949b42ccd23fc63afc (patch) | |
tree | 2e47597898d8adc73ac3a23d1b4a402f263b5364 | |
parent | dca4e6324caec44a0060a9e053c9ed268d3ed23d (diff) | |
download | patches-a9b5fe4d86d8ab1c1086e9949b42ccd23fc63afc.tar patches-a9b5fe4d86d8ab1c1086e9949b42ccd23fc63afc.tar.gz |
gnu: rust-cmake-0.1: Don't hide package.
* gnu/packages/crates-io.scm (rust-cmake-0.1)[arguments]: Skip build.
Add rust-cc-1.0 to cargo-inputs.
[properties]: Remove field.
-rw-r--r-- | gnu/packages/crates-io.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index fcdc104099..a53b801650 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -1397,13 +1397,15 @@ pitfalls in Rust.") (base32 "0qkwibkvx5xjazvv9v8gvdlpky2jhjxvcz014nrixgzqfyv2byw1")))) (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs (("rust-cc" ,rust-cc-1.0)))) (home-page "https://github.com/alexcrichton/cmake-rs") (synopsis "Rust build dependency for running cmake") (description "This package provides a build dependency for running @code{cmake} to build a native library. The CMake executable is assumed to be @code{cmake} unless the CMAKE environmental variable is set.") - (properties '((hidden? . #t))) (license (list license:asl2.0 license:expat)))) |