Compare commits

..

1 Commits

Author SHA1 Message Date
Tissevert b5126f56bb Update hablo to v1.1.0.1 and SJW to v0.1.2.3 2021-01-20 13:33:09 +01:00
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ This Nix derivation provides an attribute set with each package referenced by it
To quickly try a package `${PACKAGE_NAME}` from this repository, you can issue on the command line : To quickly try a package `${PACKAGE_NAME}` from this repository, you can issue on the command line :
```bash ```bash
nix-env -f 'https://git.marvid.fr/Tissevert/mynixpkgs/archive/0.1.0.tar.gz' -i ${PACKAGE_NAME} nix-env -f 'https://git.marvid.fr/Tissevert/mynixpkgs/archive/0.1.1.tar.gz' -i ${PACKAGE_NAME}
``` ```
## Declarative setup ## Declarative setup
@ -17,7 +17,7 @@ To use this repository in a more reproducible and less imperative way, you can i
```nix ```nix
let let
tissevertpkgs = import ( tissevertpkgs = import (
fetchTarball https://git.marvid.fr/Tissevert/mynixpkgs/archive/0.1.0.tar.gz fetchTarball https://git.marvid.fr/Tissevert/mynixpkgs/archive/0.1.1.tar.gz
) {}; ) {};
in in
``` ```