Skip to content

Commit ffa62f8

Browse files
committed
ReadMe: upd Current status
1 parent 7624bf6 commit ffa62f8

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Changelog
2+
# ChangeLog
33

44
## [(diff)](https://github.com/haskell-nix/hnix/compare/0.12.0...master#files_bucket) Progress
55

ReadMe.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ cabal v2-run hnix -- -v5 --trace <args> +RTS -xc
158158
This would give the most information as to what happens during parsing & evaluation.
159159

160160

161-
#### Run HNix
161+
#### Runing executable
162162

163163
```shell
164164
cabal v2-run hnix -- --help
@@ -217,7 +217,7 @@ nix-build \
217217
./result/bin/hnix -v5 --trace <args> +RTS -xc
218218
```
219219

220-
#### Run HNix
220+
#### Runing executable
221221

222222
```shell
223223
./result/bin/hnix
@@ -238,15 +238,15 @@ It has a pretty full/good description of the current options.
238238
To parse a file with `hnix` and pretty print the result:
239239
240240
```shell
241-
hnix FILE.nix
241+
hnix file.nix
242242
```
243243

244244
### Evaluating and printing the resulting value
245245

246246
Expression from a file:
247247

248248
```shell
249-
hnix --eval FILE.nix
249+
hnix --eval file.nix
250250
```
251251

252252
Expression:
@@ -260,7 +260,7 @@ hnix --eval --expr 'import <nixpkgs> {}'
260260
Currently, the main high-level goal is to be able to evaluate all of Nixpkgs:
261261

262262
```shell
263-
hnix --eval -E "import <nixpkgs> {}" --find
263+
hnix --eval --expr "import <nixpkgs> {}" --find
264264
```
265265

266266
### Options supported only by HNix
@@ -292,7 +292,7 @@ hnix --repl
292292

293293
Evaluate an expression and load it into REPL:
294294
```shell
295-
hnix --eval -E '(import <nixpkgs> {}).pkgs.hello' --repl
295+
hnix --eval --expr '(import <nixpkgs> {}).pkgs.hello' --repl
296296
```
297297
This binds the evaluated expression result to the `input` variable, so that variable can be inspected.
298298

@@ -358,5 +358,9 @@ For simplicity `alias` the command in your shell.
358358
359359
## Current status
360360
361-
To understand the project implementation state see [Changelog](https://github.com/haskell-nix/hnix/blob/master/CHANGELOG.md), [opened reports](https://github.com/haskell-nix/hnix/issues) and [Project status](https://github.com/haskell-nix/hnix/wiki/Project-status).
361+
To understand the project implementation state see:
362+
* [ChangeLog](https://github.com/haskell-nix/hnix/blob/master/ChangeLog.md)
363+
* [Opened reports](https://github.com/haskell-nix/hnix/issues)
364+
* [Project status](https://github.com/haskell-nix/hnix/wiki/Project-status)
365+
* [Design of the HNix code base](https://github.com/haskell-nix/hnix/wiki/Design-of-the-HNix-code-base)
362366

0 commit comments

Comments
 (0)