-
Notifications
You must be signed in to change notification settings - Fork 722
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
it was introduced for adding flake flags by default and also as a work around for nix flake show/check: NixOS/nix#4265 But the added complexity is not worth it, given it breaks other workflows with nix run (since the wrapper script does not use `exec`). Also nowadays everyone (should) have flake activated by default in the nix config.
- Loading branch information
Showing
7 changed files
with
6 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,12 @@ | ||
# Nix dependencies | ||
|
||
The nix build use the new flake format to manage dependencies. A flake-compatible nix command is provided from within `nix-shell`. To add flake support to your native nix setup please see https://nixos.wiki/wiki/Flakes. | ||
The nix build use the new flake format to manage dependencies. To add flake support to your native nix setup please see https://nixos.wiki/wiki/Flakes. | ||
|
||
Cardano-node nix build depends primarily on [haskell.nix](https://github.com/input-output-hk/haskell.nix) and secondarily, for some utilities, on [iohk-nix](https://github.com/input-output-hk/iohk-nix/). | ||
|
||
Both can be updated from within a cardano-node `nix-shell` with: | ||
Both can be updated with: | ||
|
||
``` | ||
nix flake lock --update-input haskellNix | ||
nix flake lock --update-input iohkNix | ||
``` | ||
|
||
Or from outside the `nix-shell` with the scripts: | ||
|
||
``` | ||
./nix/update-haskellNix.sh | ||
./nix/update-iohkNix.sh | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,7 @@ in | |
gnused | ||
jq | ||
moreutils | ||
nixWrapped | ||
nix | ||
pstree | ||
workbench.workbench | ||
zstd | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,7 +93,7 @@ in project.shellFor { | |
pkgs.graphviz | ||
graphmod | ||
weeder | ||
nixWrapped | ||
nix | ||
pkgconfig | ||
profiteur | ||
profiterole | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters