mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: rust-parking-lot-core@0.8: Fix compilation.
Fixes a build failure introduced ind16298196c
. This is a followup to25c66d69b2
. * gnu/packages/crates-io.scm (rust-parking-lot-core-0.8): Add 'relax-dependencies' phase.
This commit is contained in:
parent
9d795fb8fd
commit
427afa6501
1 changed files with 9 additions and 1 deletions
|
@ -40658,7 +40658,15 @@ (define-public rust-parking-lot-core-0.8
|
|||
("rust-redox-syscall" ,rust-redox-syscall-0.2)
|
||||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-thread-id" ,rust-thread-id-4)
|
||||
("rust-winapi" ,rust-winapi-0.3))))
|
||||
("rust-winapi" ,rust-winapi-0.3))
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-after 'unpack 'relax-dependencies
|
||||
(lambda _
|
||||
;; XXX: The file demands 0.3.60; we have 0.3.56, but
|
||||
;; that works well, really.
|
||||
(substitute* "Cargo.toml"
|
||||
(("0\\.3\\.60")
|
||||
,(package-version rust-backtrace-0.3))))))))
|
||||
(home-page "https://github.com/Amanieu/parking_lot")
|
||||
(synopsis "API for creating custom synchronization primitives")
|
||||
(description "This package provides an advanced API for creating custom
|
||||
|
|
Loading…
Reference in a new issue