diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-01-14 21:05:58 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-15 09:02:45 +0200 |
commit | 74146f9c72f40241b544e4df532875212a63e3d6 (patch) | |
tree | 2f0c53aa29e788d131ec43292ebf863aa3c10ed0 | |
parent | 39d6888f1accd47ac1ead46dcf05b7193f77cc27 (diff) | |
download | guix-74146f9c72f40241b544e4df532875212a63e3d6.tar.gz guix-74146f9c72f40241b544e4df532875212a63e3d6.zip |
gnu: rust-rustc-hash-1.0: Don't hide package.
* gnu/packages/crates-io.scm (rust-rustc-hash-1.0)[arguments]: Skip build.
[home-page]: Update to new home-page.
[properties]: Remove field.
-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 cd22af13fa..f39de6c406 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -8326,11 +8326,11 @@ uses finite automata and guarantees linear time matching on all inputs.") (base32 "114bf72466bl63i5hh8fgqfnhihs0w1m9c9jz505095agfixnvg0")))) (build-system cargo-build-system) - (home-page "https://github.com/rust-lang-nursery/rustc-hash") + (arguments '(#:skip-build? #t)) + (home-page "https://github.com/rust-lang/rustc-hash") (synopsis "Speedy, non-cryptographic hash used in rustc") (description "This package provides a speedy, non-cryptographic hash used in rustc.") - (properties '((hidden? . #t))) (license (list license:asl2.0 license:expat)))) |