gnu: rust-git-version-macro-0.3: Move to (gnu packages crates-vcs).

* gnu/packages/crates-io.scm (rust-git-version-macro-0.3): Move from
here ...
* gnu/packages/crates-vcs.scm: ... to here.

Change-Id: I63b5c90365c891c1ab2fac21423fc1d04a9e0520
This commit is contained in:
Efraim Flashner 2023-12-27 11:38:37 +02:00
parent e82db397e5
commit faf51ba4a3
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
2 changed files with 26 additions and 25 deletions

View File

@ -30314,31 +30314,6 @@ debugging format.")
dirty state into your program.")
(license license:bsd-2)))
(define-public rust-git-version-macro-0.3
(package
(name "rust-git-version-macro")
(version "0.3.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "git-version-macro" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0mynlf8sfaa4xx7qff0qgnr339fbf1svgr569yip067fzm97ma9l"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1))))
(home-page "https://github.com/fusion-engineering/rust-git-version")
(synopsis "Internal macro crate for git-version")
(description
"This is an internal macro crate for git-version.")
(license license:bsd-2)))
(define-public rust-git2-0.18
(package
(name "rust-git2")

View File

@ -1,4 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2023 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
@ -78,3 +79,28 @@
(description
"This package provides an inner procedural macro for git-testament.")
(license license:bsd-3)))
(define-public rust-git-version-macro-0.3
(package
(name "rust-git-version-macro")
(version "0.3.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "git-version-macro" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0mynlf8sfaa4xx7qff0qgnr339fbf1svgr569yip067fzm97ma9l"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1))))
(home-page "https://github.com/fusion-engineering/rust-git-version")
(synopsis "Internal macro crate for git-version")
(description
"This is an internal macro crate for git-version.")
(license license:bsd-2)))