aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorKamen Mladenov <kamen@syndamia.com>2025-03-21 11:13:57 +0200
committerKamen Mladenov <kamen@syndamia.com>2025-04-04 11:03:00 +0300
commitd02aef570056fdc4efbe757e898328b46e0890e6 (patch)
treee545969653a5d02b5b31528c9b42148a0a4e1eb4 /flake.nix
parentfe7d70ad78c4660e4e11f8c6bbcfca05fe1099ce (diff)
downloadzkVMs-benchmarks-d02aef570056fdc4efbe757e898328b46e0890e6.tar
zkVMs-benchmarks-d02aef570056fdc4efbe757e898328b46e0890e6.tar.gz
zkVMs-benchmarks-d02aef570056fdc4efbe757e898328b46e0890e6.zip
chore(flake.nix): Replace rust-overlay with fenix
This follows the same change which was made in mcl-blockchain
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 21e9694..675017c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -13,19 +13,19 @@
"github:metacraft-labs/nix-blockchain-development?rev=f717747a4ce11d5764578d8ee1c505d00bf8a81e";
nixpkgs.follows = "mcl-blockchain/nixpkgs";
crane.follows = "mcl-blockchain/crane";
- rust-overlay.follows = "mcl-blockchain/rust-overlay";
+ fenix.follows = "mcl-blockchain/fenix";
# flake-utils.follows = "mcl-blockchain/flake-utils";
};
outputs = { self, nixpkgs, mcl-blockchain, mcl-blockchain-old, crane
- , rust-overlay, ... }:
+ , fenix, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
system = system;
overlays = [
mcl-blockchain.overlays.default
- rust-overlay.overlays.default
+ fenix.overlays.default
(_: _: {
metacraft-labs-old =
mcl-blockchain-old.legacyPackages.${system}.metacraft-labs;