File tree Expand file tree Collapse file tree 12 files changed +16
-16
lines changed
Expand file tree Collapse file tree 12 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 1- # Unreleased
1+ # 0.7.0
22
33* Fetch ` thax ` from a static URL, removing the flake input.
44* Fix environment not being set when using ` direnv ` .
Original file line number Diff line number Diff line change 11{
22 description = "hix test project" ;
3- inputs . hix . url = "github:tek/hix?ref=0.6.9 " ;
3+ inputs . hix . url = "github:tek/hix?ref=0.7.0 " ;
44 outputs = { hix , ...} : hix ( { config , ...} : {
55 envs = {
66 one . env = { number = 1 ; } ;
Original file line number Diff line number Diff line change 11{
22 description = "Example" ;
3- inputs . hix . url = "github:tek/hix?ref=0.6.9 " ;
3+ inputs . hix . url = "github:tek/hix?ref=0.7.0 " ;
44 outputs = { hix , ...} : hix {
55 packages . parser = {
66 src = ./. ;
Original file line number Diff line number Diff line change 329329
330330 relativePackages = util . relativePackages config . base config . internal . packagePaths ;
331331
332- hixVersion = "0.6.9 " ;
332+ hixVersion = "0.7.0 " ;
333333
334334 } ;
335335 } ;
Original file line number Diff line number Diff line change @@ -20,21 +20,21 @@ You can convert an existing project with Cabal files by executing this command i
2020[ FlakeHub] ( https://flakehub.com/docs ) or GitHub:
2121
2222```
23- nix run 'https://flakehub.com/f/tek/hix/~0.6 .tar.gz#bootstrap'
24- nix run 'github:tek/hix?ref=0.6.9 #bootstrap'
23+ nix run 'https://flakehub.com/f/tek/hix/~0.7 .tar.gz#bootstrap'
24+ nix run 'github:tek/hix?ref=0.7.0 #bootstrap'
2525```
2626
2727You can create a new project in the current directory:
2828
2929```
30- nix run 'https://flakehub.com/f/tek/hix/~0.6 .tar.gz#new' -- --name 'project-name' --author 'Your Name'
30+ nix run 'https://flakehub.com/f/tek/hix/~0.7 .tar.gz#new' -- --name 'project-name' --author 'Your Name'
3131```
3232
3333The manual process consists of first adding Hix to your Haskell project flake by specifying the input:
3434
3535``` nix
3636{
37- inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.6 .tar.gz";
37+ inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.7 .tar.gz";
3838}
3939```
4040
@@ -43,7 +43,7 @@ Then configure your project with NixOS module options:
4343``` nix
4444{
4545 description = "Example";
46- inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.6 .tar.gz";
46+ inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.7 .tar.gz";
4747 outputs = {hix, ...}: hix {
4848 packages.parser = {
4949 src = ./.;
Original file line number Diff line number Diff line change 5252 } ;
5353
5454 # TODO remove
55- internal . hixCli . dev = true ;
55+ internal . hixCli . dev = false ;
5656 } ) ;
5757}
Original file line number Diff line number Diff line change 2121 } ;
2222 ports . nginx = { host = 2 ; guest = 80 ; } ;
2323 } ;
24- internal . hixCli . dev = true ;
24+ internal . hixCli . dev = false ;
2525 } ) ;
2626}
Original file line number Diff line number Diff line change 3333 } ;
3434 expose = true ;
3535 } ;
36- internal . hixCli . dev = true ;
36+ internal . hixCli . dev = false ;
3737 } ) ;
3838}
Original file line number Diff line number Diff line change 1919 } ;
2020 } ;
2121 } ;
22- internal . hixCli . dev = true ;
22+ internal . hixCli . dev = false ;
2323 } ;
2424}
Original file line number Diff line number Diff line change 4444 envs . lower-local2 . localPackage = api : api . minimal ;
4545
4646 # TODO remove
47- internal . hixCli . dev = true ;
47+ internal . hixCli . dev = false ;
4848 } ) ;
4949}
You can’t perform that action at this time.
0 commit comments