Skip to content

Commit

Permalink
version 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lassulus committed Jun 1, 2022
1 parent e0a83fd commit 7e14360
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Table of Contents

### Installation
```shell
nix-env -if https://github.com/DavHau/mach-nix/tarball/3.4.0 -A mach-nix
nix-env -if https://github.com/DavHau/mach-nix/tarball/3.5.0 -A mach-nix
```
or, if you prefer `nix-shell`:

Expand All @@ -71,7 +71,7 @@ or, if you prefer `nix-shell`:
+ otherwise:

```shell
nix-shell -p '(callPackage (fetchTarball https://github.com/DavHau/mach-nix/tarball/3.4.0) {}).mach-nix'
nix-shell -p '(callPackage (fetchTarball https://github.com/DavHau/mach-nix/tarball/3.5.0) {}).mach-nix'
```

---
Expand Down Expand Up @@ -103,7 +103,7 @@ You can call mach-nix directly from a nix expression
let
mach-nix = import (builtins.fetchGit {
url = "https://github.com/DavHau/mach-nix";
ref = "refs/tags/3.4.0";
ref = "refs/tags/3.5.0";
}) {};
in
mach-nix.mkPython {
Expand Down
6 changes: 3 additions & 3 deletions examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ every mach-nix expression should begin like this:
let
mach-nix = import (builtins.fetchGit {
url = "https://github.com/DavHau/mach-nix";
ref = "refs/tags/3.4.0";
ref = "refs/tags/3.5.0";
}) {
# optionally bring your own nixpkgs
# pkgs = import <nixpkgs> {};
Expand All @@ -66,7 +66,7 @@ in
```nix
{
inputs = {
mach-nix.url = "mach-nix/3.4.0";
mach-nix.url = "mach-nix/3.5.0";
};
outputs = {self, nixpkgs, mach-nix }@inp:
Expand Down Expand Up @@ -310,7 +310,7 @@ In this example, mach-nix is used to resolve our python dependencies and provide
let
mach-nix = import (builtins.fetchGit {
url = "https://github.com/DavHau/mach-nix";
ref = "refs/tags/3.4.0"; # update this version
ref = "refs/tags/3.5.0"; # update this version
}) {
python = "python37";
};
Expand Down

0 comments on commit 7e14360

Please sign in to comment.