mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 03:20:04 +01:00
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:
parent
e82db397e5
commit
faf51ba4a3
2 changed files with 26 additions and 25 deletions
|
@ -30314,31 +30314,6 @@ debugging format.")
|
||||||
dirty state into your program.")
|
dirty state into your program.")
|
||||||
(license license:bsd-2)))
|
(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
|
(define-public rust-git2-0.18
|
||||||
(package
|
(package
|
||||||
(name "rust-git2")
|
(name "rust-git2")
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
|
;;; Copyright © 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2023 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2023 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -78,3 +79,28 @@
|
||||||
(description
|
(description
|
||||||
"This package provides an inner procedural macro for git-testament.")
|
"This package provides an inner procedural macro for git-testament.")
|
||||||
(license license:bsd-3)))
|
(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)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue