mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Rename 'git-minimal/fixed' to 'git-minimal/pinned'.
* gnu/packages/version-control.scm: Rename variable 'git-minimal/fixed' to 'git-minimal/pinned', add depreciation. * gnu/packages/erlang.scm (erlang-erlware-commons)[native-inputs]: Replace 'git-minimal/fixed' with 'git-minimal/pinned'. (rebar3-git-vsn)[inputs]: Likewise. * gnu/packages/gnome.scm (gnome-photos)[native-inputs]: Likewise. * gnu/packages/gtk.scm (graphene)[native-inputs]: Likewise. * gnu/packages/haskell.scm (ghc-8.8, ghc-8.10)[native-inputs]: Likewise. * gnu/packages/julia-xyz.scm (julia-documenter)[native-inputs]: Likewise. * gnu/packages/ocaml.scm (opam, ocamlformat)[native-inputs]: Likewise. * gnu/packages/python-xyz.scm (python-check-manifest)[native-inputs]: Likewise. (python-scikit-build)[native-inputs]: Likewise. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
b640402063
commit
44f43603d3
8 changed files with 17 additions and 12 deletions
|
@ -67,6 +67,7 @@
|
|||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix deprecation)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
|
@ -670,7 +671,11 @@ everything from small to very large projects with speed and efficiency.")
|
|||
perl
|
||||
zlib))))
|
||||
|
||||
(define-public git-minimal/fixed
|
||||
;;; The symbol git-minimal/fixed should be used when git-minimal needs fixes
|
||||
;;; (security or else) and this deprecation could be removed.
|
||||
(define-deprecated/public-alias git-minimal/fixed git-minimal/pinned)
|
||||
|
||||
(define-public git-minimal/pinned
|
||||
;; Version that rarely changes, depended on by Graphene/GTK+.
|
||||
(package/inherit git-minimal
|
||||
(version "2.33.1")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue