diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-01-21 17:49:00 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-21 17:49:18 +0200 |
commit | 5b7856ecd0df6bc4c663bc3c143136f3e8969add (patch) | |
tree | 31d86e3c93fba1cf95862595b876a0736a465e6a /gnu | |
parent | 132c15ae9cbdc59b0b7bd28b492e024fce3eeb10 (diff) | |
download | guix-5b7856ecd0df6bc4c663bc3c143136f3e8969add.tar guix-5b7856ecd0df6bc4c663bc3c143136f3e8969add.tar.gz |
gnu: rust-matches-0.1: Don't hide package.
* gnu/packages/crates-io.scm (rust-matches-0.1)[arguments]: Skip build.
[properties]: Remove field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 8605cc4520..04808c4f2e 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -6013,11 +6013,11 @@ implementation of LZMA and xz stream encoding/decoding.") (base32 "020axl4q7rk9vz90phs7f8jas4imxal9y9kxl4z4v7a6719mrz3z")))) (build-system cargo-build-system) + (arguments '(#:skip-build? #t)) (home-page "https://github.com/SimonSapin/rust-std-candidates") - (synopsis "Macro to evaluate whether an expression matches a pattern.") + (synopsis "Macro to evaluate whether an expression matches a pattern") (description "This package provides a macro to evaluate, as a boolean, whether an expression matches a pattern.") - (properties '((hidden? . #t))) (license license:expat))) (define-public rust-matrixmultiply-0.1 |