Skip to content
This repository has been archived by the owner on Feb 17, 2025. It is now read-only.

Commit

Permalink
Restore github type for crypto3 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
akokoshn committed Aug 28, 2024
1 parent 3230e80 commit a8cb44d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ include(GNUInstallDirs)
option(BUILD_DOCS "Build documentation" FALSE)
option(ENABLE_TESTS "Enable tests" FALSE)


add_subdirectory(libs)
add_subdirectory(bin)

Expand Down
9 changes: 3 additions & 6 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
};
};
nil-crypto3 = {
url = "https://github.com/NilFoundation/crypto3";
type = "git";
type = "github";
owner = "NilFoundation";
repo = "crypto3";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
Expand Down Expand Up @@ -94,10 +95,6 @@
type = "app";
program = "${packages.default}/bin/assigner";
};
block_gen = {
type = "app";
program = "${packages.default}/bin/block_gen";
};
};
}));
}
Expand Down
3 changes: 2 additions & 1 deletion zkevm-framework.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ in stdenv.mkDerivation rec {
doCheck = runTests;

checkPhase = ''
ninja executables_tests && ctest
ctest
ninja executables_tests
'';

shellHook = ''
Expand Down

0 comments on commit a8cb44d

Please sign in to comment.