Skip to content

Commit 7e14360

Browse files
committed
version 3.5.0
1 parent e0a83fd commit 7e14360

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Table of Contents
5858

5959
### Installation
6060
```shell
61-
nix-env -if https://github.com/DavHau/mach-nix/tarball/3.4.0 -A mach-nix
61+
nix-env -if https://github.com/DavHau/mach-nix/tarball/3.5.0 -A mach-nix
6262
```
6363
or, if you prefer `nix-shell`:
6464

@@ -71,7 +71,7 @@ or, if you prefer `nix-shell`:
7171
+ otherwise:
7272

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

7777
---
@@ -103,7 +103,7 @@ You can call mach-nix directly from a nix expression
103103
let
104104
mach-nix = import (builtins.fetchGit {
105105
url = "https://github.com/DavHau/mach-nix";
106-
ref = "refs/tags/3.4.0";
106+
ref = "refs/tags/3.5.0";
107107
}) {};
108108
in
109109
mach-nix.mkPython {

examples.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ every mach-nix expression should begin like this:
4646
let
4747
mach-nix = import (builtins.fetchGit {
4848
url = "https://github.com/DavHau/mach-nix";
49-
ref = "refs/tags/3.4.0";
49+
ref = "refs/tags/3.5.0";
5050
}) {
5151
# optionally bring your own nixpkgs
5252
# pkgs = import <nixpkgs> {};
@@ -66,7 +66,7 @@ in
6666
```nix
6767
{
6868
inputs = {
69-
mach-nix.url = "mach-nix/3.4.0";
69+
mach-nix.url = "mach-nix/3.5.0";
7070
};
7171
7272
outputs = {self, nixpkgs, mach-nix }@inp:
@@ -310,7 +310,7 @@ In this example, mach-nix is used to resolve our python dependencies and provide
310310
let
311311
mach-nix = import (builtins.fetchGit {
312312
url = "https://github.com/DavHau/mach-nix";
313-
ref = "refs/tags/3.4.0"; # update this version
313+
ref = "refs/tags/3.5.0"; # update this version
314314
}) {
315315
python = "python37";
316316
};

0 commit comments

Comments
 (0)