mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: Add rust-bitflags-1.2.
* gnu/packages/crates-io.scm (rust-bitflags-1.2): New variable.
This commit is contained in:
parent
fc2ff004f7
commit
eeba3facd0
1 changed files with 16 additions and 0 deletions
|
@ -6883,6 +6883,22 @@ (define-public rust-bitflags-1
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
;; XXX: The package below is meant to fix rust-nix-0.22, which has the
|
||||
;; following requirements for bitflags version: ">=1.1.0 <1.3.0", and every
|
||||
;; package using the latter as a dependency (e.g., nushell 0.43).
|
||||
(define-public rust-bitflags-1.2
|
||||
(package
|
||||
(inherit rust-bitflags-1)
|
||||
(name "rust-bitflags")
|
||||
(version "1.2.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "bitflags" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "14qnd5nq8p2almk79m4m8ydqhd413yaxsyjp5xd19g3mikzf47fg"))))))
|
||||
|
||||
(define-public rust-bitflags-0.9
|
||||
(package
|
||||
(inherit rust-bitflags-1)
|
||||
|
|
Loading…
Reference in a new issue