File tree Expand file tree Collapse file tree 9 files changed +14
-14
lines changed
Expand file tree Collapse file tree 9 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 1- # Unreleased
1+ # 0.8.0
22
33* Add a reusable workflow for managed bounds updates.
44* Parse Nix json output messages to diagnose problems in managed bounds apps; add overrides for installed packages that
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.7.1 " ;
3+ inputs . hix . url = "github:tek/hix?ref=0.8.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.7.1 " ;
3+ inputs . hix . url = "github:tek/hix?ref=0.8.0 " ;
44 outputs = { hix , ...} : hix {
55 packages . parser = {
66 src = ./. ;
Original file line number Diff line number Diff line change 284284
285285 packageNames = attrNames config . packages ;
286286
287- hixVersion = "0.7.1 " ;
287+ hixVersion = "0.8.0 " ;
288288
289289 } ;
290290 } ;
Original file line number Diff line number Diff line change 11{
2- version = "0.7.2 " ;
3- sha256 = "19j3f6ncfn0qjf8yr7ap4zpril45pqixz42lc4w2n40v41nfjdwi " ;
2+ version = "0.8.0 " ;
3+ sha256 = "1kkjy9gksnpl0d67rk23iswywv41fi1jyh5mmq69si6cd8y1dx7k " ;
44}
Original file line number Diff line number Diff line change 1- "0.7.2 "
1+ "0.8.0 "
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ cabal-version: 2.2
55-- see: https://github.com/sol/hpack
66
77name : hix
8- version : 0.7.2
8+ version : 0.8.0
99synopsis : Haskell/Nix development build tools
1010description : See https://hackage.haskell.org/package/hix/docs/Hix.html
1111category : Build
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.7 .tar.gz#bootstrap'
24- nix run 'github:tek/hix?ref=0.7.1 #bootstrap'
23+ nix run 'https://flakehub.com/f/tek/hix/~0.8 .tar.gz#bootstrap'
24+ nix run 'github:tek/hix?ref=0.8.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.7 .tar.gz#new' -- --name 'project-name' --author 'Your Name'
30+ nix run 'https://flakehub.com/f/tek/hix/~0.8 .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.7 .tar.gz";
37+ inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.8 .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.7 .tar.gz";
46+ inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.8 .tar.gz";
4747 outputs = {hix, ...}: hix {
4848 packages.parser = {
4949 src = ./.;
Original file line number Diff line number Diff line change 5454 expose = true ;
5555 } ;
5656
57- internal . hixCli . dev = true ;
57+ internal . hixCli . dev = false ;
5858
5959 } ) ;
6060}
You can’t perform that action at this time.
0 commit comments