-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: revert to build packages manually in flake check (#418)
* fix: revert to build packages manually in flake check so buildbot can build them * fix: pin down wake platforms * fix: update flake.lock with fixes to mkdocs plugins platforms * fix: improve mkdocs.nix
- Loading branch information
1 parent
45b8a8d
commit de7eaae
Showing
6 changed files
with
77 additions
and
60 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
stdenv, | ||
fetchFromGitHub, | ||
fetchYarnDeps, | ||
nodePackages, | ||
}: let | ||
name = "lodestar"; | ||
version = "1.12.0"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "ChainSafe"; | ||
repo = "lodestar"; | ||
ref = "refs/tags/v${version}"; | ||
hash = ""; | ||
}; | ||
|
||
yarnDeps = stdenv.mkDerivation { | ||
yarnLock = "${src}/yarn.lock"; | ||
hash = ""; | ||
|
||
}; | ||
in yarnDeps | ||
# in stdenv.mkDerivation { | ||
# inherit name version src; | ||
# } |
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