Skip to content

Commit

Permalink
Replace references to nix run with nix shell
Browse files Browse the repository at this point in the history
  • Loading branch information
Riscky committed Apr 24, 2023
1 parent 285463d commit 266b026
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,8 +429,8 @@ from a Nix cache, to not have to recompile all of Haskell and its dependencies.
To set up the cache, execute these commands once before building:

```console
$ nix run -c cachix use static-haskell-nix
$ nix run -c cachix use channable-public
$ nix shell --file default.nix -c cachix use static-haskell-nix
$ nix shell --file default.nix -c cachix use channable-public
```

Note that the build process via Nix is not (yet) reproducible, which means that
Expand All @@ -449,7 +449,7 @@ test `vaultenv`.
Get this shell with:

```
$ nix run
$ nix shell --file default.nix
```

## Future work
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
1. Tag: `git tag -a v<VERSION>`. Write a changelog.
1. `git push origin master --tags`
1. Build the static version of `vaultenv` and the Debian package by running
`nix run -c ./package/build_package.sh`.
`nix shell --file default.nix -c ./package/build_package.sh`.
1. Go to https://github.com/channable/vaultenv/releases
1. Click "Draft a new release". Add the binary from the Nix output and the
.deb package.

0 comments on commit 266b026

Please sign in to comment.