forked from fluidattacks/makes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(build): fluidattacks#1202 update nixpkgs
- Update nixpkgs to last version Signed-off-by: Robin Quintero <rohaquinlop301@gmail.com>
- Loading branch information
1 parent
fc1be2e
commit a349dd3
Showing
10 changed files
with
34 additions
and
28 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
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
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
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
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,8 +1,8 @@ | ||
{__nixpkgs__, ...}: version: | ||
if version == "14" | ||
then __nixpkgs__.nodejs-14_x | ||
else if version == "16" | ||
then __nixpkgs__.nodejs-16_x | ||
else if version == "18" | ||
then __nixpkgs__.nodejs-18_x | ||
else abort "Supported node versions are: 14, 16 and 18" | ||
if version == "18" | ||
then __nixpkgs__.nodejs_18 | ||
else if version == "20" | ||
then __nixpkgs__.nodejs_20 | ||
else if version == "21" | ||
then __nixpkgs__.nodejs_21 | ||
else abort "Supported node versions are: 18, 20 and 21" |
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,7 +1,7 @@ | ||
{__nixpkgs__, ...}: version: | ||
{ | ||
"2.7" = __nixpkgs__.ruby_2_7; | ||
"3.0" = __nixpkgs__.ruby_3_0; | ||
"3.1" = __nixpkgs__.ruby_3_1; | ||
"3.2" = __nixpkgs__.ruby_3_2; | ||
"3.3" = __nixpkgs__.ruby_3_3; | ||
} | ||
.${version} |
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