mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: Add rust-pijul-macros-0.5.
* gnu/packages/crates-vcs.scm (rust-pijul-macros-0.5): New variable. Change-Id: Ica8a46e502745d4cd444d2827c5b5bc29498b293
This commit is contained in:
parent
555a73bfa8
commit
2bdd264004
1 changed files with 23 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2019, 2020, 2022-2024 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2019, 2020, 2022-2025 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2019, 2020 John Soo <jsoo1@asu.edu>
|
||||
;;; Copyright © 2019, 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
|
@ -7394,3 +7394,25 @@ (define-public rust-libpijul-0.12
|
|||
@item Information about file moves, additions and deletions.
|
||||
@end itemize")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public rust-pijul-macros-0.5
|
||||
(package
|
||||
(name "rust-pijul-macros")
|
||||
(version "0.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "pijul-macros" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0r3hivav1mzpzdpk2rj8flhl4vgp2r85gdi0kw5x8r8bv0y79cy2"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1)
|
||||
("rust-quote" ,rust-quote-1)
|
||||
("rust-regex" ,rust-regex-1)
|
||||
("rust-syn" ,rust-syn-1))))
|
||||
(home-page "https://nest.pijul.com/pijul/pijul")
|
||||
(synopsis "Macros used to write libpijul")
|
||||
(description "This package provides macros used to write libpijul.")
|
||||
(license license:gpl2)))
|
||||
|
|
Loading…
Reference in a new issue