From d4efe8024deee2a5c8e31dc4764fd6a602181b4e Mon Sep 17 00:00:00 2001 From: janabhumi Date: Tue, 6 Sep 2022 00:07:33 +0300 Subject: [PATCH] rust: fix path to cargo toml --- rust-flake/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-flake/flake.nix b/rust-flake/flake.nix index 4c9cd51..8c33c66 100644 --- a/rust-flake/flake.nix +++ b/rust-flake/flake.nix @@ -8,7 +8,7 @@ utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; - cargoToml = with builtins; (fromTOML (readFile ./dexios/Cargo.toml)); + cargoToml = with builtins; (fromTOML (readFile ./Cargo.toml)); in { packages.default = pkgs.rustPlatform.buildRustPackage {