mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-gix-pathspec-0.4.
* gnu/packages/crates-vcs.scm (rust-gix-pathspec-0.4): New variable. (rust-gix-pathspec-0.3): Inherit from rust-gix-pathspec-0.4. Change-Id: If479d27a7e65c767c5a7bb3dca0eec6a287270d3
This commit is contained in:
parent
831c390562
commit
5b9264d9ad
1 changed files with 30 additions and 7 deletions
|
@ -2560,25 +2560,24 @@ (define-public rust-gix-path-0.8
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-tempfile" ,rust-tempfile-3))))))
|
(("rust-tempfile" ,rust-tempfile-3))))))
|
||||||
|
|
||||||
(define-public rust-gix-pathspec-0.3
|
(define-public rust-gix-pathspec-0.4
|
||||||
(package
|
(package
|
||||||
(name "rust-gix-pathspec")
|
(name "rust-gix-pathspec")
|
||||||
(version "0.3.0")
|
(version "0.4.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "gix-pathspec" version))
|
(uri (crate-uri "gix-pathspec" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1zg5m586s0sxxwadlvsx9hrrkyym9d4q936kk0zyf6y58ydnrqn3"))))
|
(base32 "0ka9h2lfgbfbby5rciipgy6nkl1qkcrhp0xvr11z13m3flpvkfqx"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;undeclared crate gix_testtools
|
`(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
|
||||||
#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
|
|
||||||
("rust-bstr" ,rust-bstr-1)
|
("rust-bstr" ,rust-bstr-1)
|
||||||
("rust-gix-attributes" ,rust-gix-attributes-0.19)
|
("rust-gix-attributes" ,rust-gix-attributes-0.20)
|
||||||
("rust-gix-config-value" ,rust-gix-config-value-0.14)
|
("rust-gix-config-value" ,rust-gix-config-value-0.14)
|
||||||
("rust-gix-glob" ,rust-gix-glob-0.13)
|
("rust-gix-glob" ,rust-gix-glob-0.14)
|
||||||
("rust-gix-path" ,rust-gix-path-0.10)
|
("rust-gix-path" ,rust-gix-path-0.10)
|
||||||
("rust-thiserror" ,rust-thiserror-1))
|
("rust-thiserror" ,rust-thiserror-1))
|
||||||
#:cargo-development-inputs (("rust-once-cell" ,rust-once-cell-1)
|
#:cargo-development-inputs (("rust-once-cell" ,rust-once-cell-1)
|
||||||
|
@ -2590,6 +2589,30 @@ (define-public rust-gix-pathspec-0.3
|
||||||
part of Gitoxide, a Rust implementation of Git.")
|
part of Gitoxide, a Rust implementation of Git.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-gix-pathspec-0.3
|
||||||
|
(package
|
||||||
|
(inherit rust-gix-pathspec-0.4)
|
||||||
|
(name "rust-gix-pathspec")
|
||||||
|
(version "0.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "gix-pathspec" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1zg5m586s0sxxwadlvsx9hrrkyym9d4q936kk0zyf6y58ydnrqn3"))))
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ;undeclared crate gix_testtools
|
||||||
|
#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
|
||||||
|
("rust-bstr" ,rust-bstr-1)
|
||||||
|
("rust-gix-attributes" ,rust-gix-attributes-0.19)
|
||||||
|
("rust-gix-config-value" ,rust-gix-config-value-0.14)
|
||||||
|
("rust-gix-glob" ,rust-gix-glob-0.13)
|
||||||
|
("rust-gix-path" ,rust-gix-path-0.10)
|
||||||
|
("rust-thiserror" ,rust-thiserror-1))
|
||||||
|
#: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.7
|
||||||
(package
|
(package
|
||||||
(name "rust-gix-prompt")
|
(name "rust-gix-prompt")
|
||||||
|
|
Loading…
Reference in a new issue