diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-02-17 23:05:03 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-02-17 23:07:46 +0200 |
commit | 91105ccf125339fd47aeb30c5d888f2a62a0659f (patch) | |
tree | f2370bde3db1eb2d5f17250c03b64b79cfdeca1a /gnu | |
parent | 8a1a681fc66a360c2886a292872e45f7fc7143bd (diff) | |
download | patches-91105ccf125339fd47aeb30c5d888f2a62a0659f.tar patches-91105ccf125339fd47aeb30c5d888f2a62a0659f.tar.gz |
gnu: rust-vcpkg-0.2: Update to 0.2.8.
* gnu/packages/crates-io.scm (rust-vcpkg-0.2): Update to 0.2.8.
[arguments]: Skip tests. Add rust-lazy-static-1, rust-tempdir-0.3
to cargo-development-inputs.
[properties]: Remove field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 5bd0e22adc..c15aee4063 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -15183,7 +15183,7 @@ Unix users and groups.") (define-public rust-vcpkg-0.2 (package (name "rust-vcpkg") - (version "0.2.7") + (version "0.2.8") (source (origin (method url-fetch) @@ -15191,14 +15191,18 @@ Unix users and groups.") (file-name (string-append name "-" version ".crate")) (sha256 (base32 - "15dzk1b96q946v9aisbd1bbhi33n93wvgziwh1shmscn1xflbp9k")))) + "0s1ijdrsg6917imja2hb07l0z4vbx7ydm8m2i1n9g62fg7r3ki1z")))) (build-system cargo-build-system) + (arguments + `(#:tests? #f ; Tests want mysql, harfbuzz, graphite2. + #:cargo-development-inputs + (("rust-lazy-static" ,rust-lazy-static-1) + ("rust-tempdir" ,rust-tempdir-0.3)))) (home-page "https://github.com/mcgoo/vcpkg-rs") (synopsis "Find native dependencies in a vcpkg tree at build time") (description "This package provides a library to find native dependencies in a @code{vcpkg} tree at build time in order to be used in Cargo build scripts.") - (properties '((hidden? . #t))) (license (list license:asl2.0 license:expat)))) |