me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-gix-prompt-0.8.

* gnu/packages/crates-vcs.scm (rust-gix-prompt-0.8): New variable.
(rust-gix-prompt-0.7): Inherit from rust-gix-prompt-0.8.

Change-Id: I324fd72cac6365d8ebbb619150958dd963aeb893
master
Efraim Flashner 2024-03-11 13:51:40 +02:00
parent 742c518213
commit 771552c5a2
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 4 deletions

View File

@ -3073,20 +3073,20 @@ part of Gitoxide, a Rust implementation of Git.")
#:cargo-development-inputs (("rust-once-cell" ,rust-once-cell-1)
("rust-serial-test" ,rust-serial-test-2))))))
(define-public rust-gix-prompt-0.7
(define-public rust-gix-prompt-0.8
(package
(name "rust-gix-prompt")
(version "0.7.0")
(version "0.8.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "gix-prompt" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0y26b3d7z222b223ir9qf8yqwhknzc3c5yksjffmwvsid4vr36jw"))))
(base32 "18an2s9hxl5hizzncvfl8z4vj9hkxk5wlmnjdizw4ychrbn24hf0"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-gix-command" ,rust-gix-command-0.2)
`(#:cargo-inputs (("rust-gix-command" ,rust-gix-command-0.3)
("rust-gix-config-value" ,rust-gix-config-value-0.14)
("rust-parking-lot" ,rust-parking-lot-0.12)
("rust-rustix" ,rust-rustix-0.38)
@ -3100,6 +3100,27 @@ part of Gitoxide, a Rust implementation of Git.")
terminals prompt.")
(license (list license:expat license:asl2.0))))
(define-public rust-gix-prompt-0.7
(package
(inherit rust-gix-prompt-0.8)
(name "rust-gix-prompt")
(version "0.7.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "gix-prompt" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0y26b3d7z222b223ir9qf8yqwhknzc3c5yksjffmwvsid4vr36jw"))))
(arguments
`(#:cargo-inputs (("rust-gix-command" ,rust-gix-command-0.2)
("rust-gix-config-value" ,rust-gix-config-value-0.14)
("rust-parking-lot" ,rust-parking-lot-0.12)
("rust-rustix" ,rust-rustix-0.38)
("rust-thiserror" ,rust-thiserror-1))
#:cargo-development-inputs (("rust-expectrl" ,rust-expectrl-0.7)
("rust-serial-test" ,rust-serial-test-2))))))
(define-public rust-gix-prompt-0.5
(package
(inherit rust-gix-prompt-0.7)