mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add rust-umask-2.
* gnu/packages/crates-io.scm (rust-umask-2): New variable. (rust-umask-1): Inherit from rust-umask-2. Change-Id: I8de7745927f1e4dc7ca57c3b27da73675b06de74
This commit is contained in:
parent
5f481928e2
commit
fb520e4894
1 changed files with 22 additions and 7 deletions
|
@ -83450,8 +83450,29 @@ (define-public rust-uluru-3
|
|||
"This package provides a simple, fast, LRU cache implementation.")
|
||||
(license license:mpl2.0)))
|
||||
|
||||
(define-public rust-umask-2
|
||||
(package
|
||||
(name "rust-umask")
|
||||
(version "2.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "umask" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "071xszsd6znk0ik11pxl7mwhf07clsiq3qpzw1ac0dcyak14d6pc"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-thiserror" ,rust-thiserror-1))))
|
||||
(home-page "https://github.com/Canop/umask")
|
||||
(synopsis "Utility to deal with unix access mode")
|
||||
(description
|
||||
"This package provides an utility to deal with Unix access mode.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-umask-1
|
||||
(package
|
||||
(inherit rust-umask-2)
|
||||
(name "rust-umask")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
|
@ -83461,13 +83482,7 @@ (define-public rust-umask-1
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0ipyyv82lpy5xpqzmq3ra0d61vsd3bfh6b06c9w8zln41vvznblq"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments `(#:skip-build? #t))
|
||||
(home-page "https://github.com/Canop/umask")
|
||||
(synopsis "Utility to deal with unix access mode")
|
||||
(description
|
||||
"This package provides an utility to deal with Unix access mode.")
|
||||
(license license:expat)))
|
||||
(arguments `(#:skip-build? #t))))
|
||||
|
||||
(define-public rust-unarray-0.1
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue