Next: Invocación de guix import
, Previous: Invocación de guix download
, Up: Utilidades [Contents][Index]
guix hash
The guix hash
command computes the hash of a file. It is
primarily a convenience tool for anyone contributing to the distribution: it
computes the cryptographic hash of one or more files, which can be used in
the definition of a package (see Definición de paquetes).
La sintaxis general es:
guix hash option file ...
Cuando archivo es -
(un guión), guix hash
calcula el
hash de los datos leídos por la entrada estándar. guix hash
tiene
las siguientes opciones:
--hash=algoritmo
-H algoritmo
Calcula un hash usando el algoritmo especificado, sha256
de
manera predeterminada.
algorithm must be the name of a cryptographic hash algorithm supported
by Libgcrypt via Guile-Gcrypt—e.g., sha512
or sha3-256
(see Hash Functions in Guile-Gcrypt Reference Manual).
--format=fmt
-f fmt
Escribe el hash en el formato especificado por fmt.
Los formatos disponibles son: base64
, nix-base32
,
base32
, base16
(se puede usar también hex
y
hexadecimal
).
Si no se especifica la opción --format, guix hash
mostrará el hash en nix-base32
. Esta representación es la usada en
las definiciones de paquetes.
--recursive
-r
The --recursive option is deprecated in favor of --serializer=nar (see below); -r remains accepted as a convenient shorthand.
--serializer=type
-S type
Compute the hash on file using type serialization.
type may be one of the following:
none
This is the default: it computes the hash of a file’s contents.
nar
Compute the hash of a “normalized archive” (or “nar”) containing
file, including its children if it is a directory. Some of the
metadata of file is part of the archive; for instance, when file
is a regular file, the hash is different depending on whether file is
executable or not. Metadata such as time stamps have no impact on the hash
(see Invocación de guix archive
, for more info on the nar format).
git
Compute the hash of the file or directory as a Git “tree”, following the same method as the Git version control system.
--exclude-vcs
-x
Cuando se combina con --recursive, excluye los directorios del sistema de control de versiones (.bzr, .git, .hg, etc.).
Como un ejemplo, así es como calcularía el hash de una copia de trabajo Git,
lo cual es útil cuando se usa el método git-fetch
(see Referencia de origin
):
$ git clone http://example.org/foo.git $ cd foo $ guix hash -x --serializer=nar .
Next: Invocación de guix import
, Previous: Invocación de guix download
, Up: Utilidades [Contents][Index]