From 284d574492a6653784bf62f97d21d4e0686c537e Mon Sep 17 00:00:00 2001 From: "guillem.cordoba" Date: Mon, 3 Jun 2024 15:40:11 +0200 Subject: [PATCH] Removed excluded --- nix/fixtures/module-repo/flake.lock | 2 +- nix/fixtures/module-repo/zome/zome.nix | 2 -- nix/zome.nix | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/nix/fixtures/module-repo/flake.lock b/nix/fixtures/module-repo/flake.lock index 741f1dd..a533a86 100644 --- a/nix/fixtures/module-repo/flake.lock +++ b/nix/fixtures/module-repo/flake.lock @@ -612,7 +612,7 @@ }, "locked": { "lastModified": 0, - "narHash": "sha256-ugSrTesuRRACjs+97RCguYMldVkLpuHi2JZR+P7wlAA=", + "narHash": "sha256-+tF9IrZzNQhFSjJY4K1y/dW6ab0UHbVDNsRsoiFEK5c=", "path": "../../..", "type": "path" }, diff --git a/nix/fixtures/module-repo/zome/zome.nix b/nix/fixtures/module-repo/zome/zome.nix index ed9dbfa..3c1cb49 100644 --- a/nix/fixtures/module-repo/zome/zome.nix +++ b/nix/fixtures/module-repo/zome/zome.nix @@ -8,8 +8,6 @@ crateCargoToml = ./Cargo.toml; }; - # - checks.my_zome = inputs.hc-infra.outputs.lib.sweettest { workspacePath = inputs.self.outPath; holochain = inputs'.holochain; diff --git a/nix/zome.nix b/nix/zome.nix index ed9bcf5..3c565fe 100644 --- a/nix/zome.nix +++ b/nix/zome.nix @@ -61,7 +61,7 @@ let buildPackageCommonArgs = commonArgs // { cargoBuildCommand = - "${rustFlags} cargo build --profile release -p ${crate} --offline ${excludedCrates}"; + "${rustFlags} cargo build --profile release -p ${crate} --offline"; pname = crate; version = cargoToml.package.version; cargoToml = crateCargoToml;