Skip to content

Commit

Permalink
Release 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tek committed Sep 6, 2023
1 parent 2eba681 commit b37053a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/doc-env-selection/flake.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
description = "hix test project";
inputs.hix.url = "github:tek/hix?ref=0.6.3";
inputs.hix.url = "github:tek/hix?ref=0.6.4";
outputs = {hix, ...}: hix ({config, ...}: {
envs = {
one.env = { number = 1; };
Expand Down
2 changes: 1 addition & 1 deletion examples/doc-packages/flake.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
description = "Example";
inputs.hix.url = "github:tek/hix?ref=0.6.3";
inputs.hix.url = "github:tek/hix?ref=0.6.4";
outputs = {hix, ...}: hix {
packages.parser = {
src = ./.;
Expand Down
2 changes: 1 addition & 1 deletion modules/basic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ in {

relativePackages = util.relativePackages config.base config.internal.packagePaths;

hixVersion = "0.6.3";
hixVersion = "0.6.4";

};
};
Expand Down
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ To learn more, please visit the [documentation page](https://tryp.io/hix/index.h
You can convert an existing project with Cabal files by executing this command in the project root:

```
nix run 'github:tek/hix?ref=0.6.3#bootstrap'
nix run 'github:tek/hix?ref=0.6.4#bootstrap'
```

You can create a new project in the current directory:

```
nix run 'github:tek/hix?ref=0.6.3#new' -- --name 'project-name' --author 'Your Name'
nix run 'github:tek/hix?ref=0.6.4#new' -- --name 'project-name' --author 'Your Name'
```

The manual process consists of first adding Hix to your Haskell project flake by specifying the input:

```nix
{
inputs.hix.url = "github:tek/hix?ref=0.6.3";
inputs.hix.url = "github:tek/hix?ref=0.6.4";
}
```

Expand All @@ -41,7 +41,7 @@ Then configure your project with NixOS module options:
```nix
{
description = "Example";
inputs.hix.url = "github:tek/hix?ref=0.6.3";
inputs.hix.url = "github:tek/hix?ref=0.6.4";
outputs = {hix, ...}: hix {
packages.parser = {
src = ./.;
Expand Down

0 comments on commit b37053a

Please sign in to comment.