Update hablo to v1.1.0.1 and SJW to v0.1.2.3

This commit is contained in:
Tissevert 2021-01-20 13:20:19 +01:00
parent c78a729a79
commit b5126f56bb
2 changed files with 6 additions and 6 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
``` ```

View File

@ -8,10 +8,10 @@ builtins.intersectAttrs {hablo = 1; SJW = 1;} (pkgs.haskellPackages.override {
}: }:
mkDerivation { mkDerivation {
pname = "hablo"; pname = "hablo";
version = "1.1.0.0"; version = "1.1.0.1";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "https://git.marvid.fr/Tissevert/hablo.git"; url = "https://git.marvid.fr/Tissevert/hablo.git";
ref = "v1.1.0.0"; ref = "v1.1.0.1";
}; };
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
@ -36,10 +36,10 @@ builtins.intersectAttrs {hablo = 1; SJW = 1;} (pkgs.haskellPackages.override {
}: }:
mkDerivation { mkDerivation {
pname = "SJW"; pname = "SJW";
version = "0.1.2.2"; version = "0.1.2.3";
src = builtins.fetchGit { src = builtins.fetchGit {
url = "https://git.marvid.fr/Tissevert/SJW.git"; url = "https://git.marvid.fr/Tissevert/SJW.git";
ref = "v0.1.2.2"; ref = "v0.1.2.3";
}; };
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;