Document fetchFromGithub

This commit is contained in:
Yorick Barbanneau 2024-02-20 22:35:04 +01:00
parent a0e66f6205
commit 542e6aa15f
2 changed files with 20 additions and 1 deletions

View file

@ -16,3 +16,21 @@ doas nixos-rebuild switch --flake ".#mrmeeseeks"
nix flake update nix flake update
doas nixos-rebuild switch --flake ".#mrmeeseeks" doas nixos-rebuild switch --flake ".#mrmeeseeks"
``` ```
## Update manual packages from github
Somes of module use `fetchFromGithub` who need *SHA-256* hash to meet
reproductibility. Theses hashed can be obtain with `nix-prefetch-github`:
```shell
$ nix-shell -p nix-prefetch-github
$ nix-prefetch-ghithub --rev v1.22.0 sindresorhus pure
{
"owner": "sindresorhus",
"repo": "pure",
"rev": "87e6f5dd4c793f6d980532205aaefe196780606f",
"sha256": "TR4CyBZ+KoZRs9XDmWE5lJuUXXU1J8E2Z63nt+FS+5w="
}
```
In this example whe have obtained the hash for the specific 1.22.0 version.

View file

@ -173,7 +173,8 @@ fileviewer {*.pdf},<application/pdf> pdftotext -nopgbrk %c -
filetype {*.pdf},<application/pdf> filetype {*.pdf},<application/pdf>
\ xdg-open \ xdg-open
fileviewer {*.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm},<image/*> fileviewer {*.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm},<image/*>
\ chafa -f sixel -s %pwx%ph %c:p %pd %N 2>/dev/null \ chafa -f sixel --polite on -s %pwx%ph --animate off %c
\ %pd %N
filetype {*.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm},<image/*> filetype {*.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm},<image/*>
\ xdg-open \ xdg-open
fileviewer *.zip,*.jar,*.war,*.ear,*.oxt tar -tf %f fileviewer *.zip,*.jar,*.war,*.ear,*.oxt tar -tf %f