diff --git a/README.md b/README.md index 72a1e1c..523b514 100644 --- a/README.md +++ b/README.md @@ -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 : ```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 @@ -17,7 +17,7 @@ To use this repository in a more reproducible and less imperative way, you can i ```nix let 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 ``` diff --git a/default.nix b/default.nix index c5a0314..f56814e 100644 --- a/default.nix +++ b/default.nix @@ -8,10 +8,10 @@ builtins.intersectAttrs {hablo = 1; SJW = 1;} (pkgs.haskellPackages.override { }: mkDerivation { pname = "hablo"; - version = "1.1.0.0"; + version = "1.1.0.1"; src = builtins.fetchGit { url = "https://git.marvid.fr/Tissevert/hablo.git"; - ref = "v1.1.0.0"; + ref = "v1.1.0.1"; }; isLibrary = true; isExecutable = true; @@ -36,10 +36,10 @@ builtins.intersectAttrs {hablo = 1; SJW = 1;} (pkgs.haskellPackages.override { }: mkDerivation { pname = "SJW"; - version = "0.1.2.2"; + version = "0.1.2.3"; src = builtins.fetchGit { url = "https://git.marvid.fr/Tissevert/SJW.git"; - ref = "v0.1.2.2"; + ref = "v0.1.2.3"; }; isLibrary = true; isExecutable = true;