diff --git a/checks/cargoClippy/default.nix b/checks/cargoClippy/default.nix index f356dce1..2b16ef74 100644 --- a/checks/cargoClippy/default.nix +++ b/checks/cargoClippy/default.nix @@ -1,8 +1,8 @@ # SPDX-License-Identifier: Apache-2.0 # Copyright (c) 2024 Matter Labs -{ teepotCrate }: teepotCrate.craneLib.cargoClippy ( - teepotCrate.commonArgs // { +{ teepot }: teepot.teepot.passthru.craneLib.cargoClippy ( + teepot.teepot.passthru.commonArgs // { pname = "teepot"; - inherit (teepotCrate) cargoArtifacts; + inherit (teepot.teepot.passthru) cargoArtifacts; } ) diff --git a/checks/cargoDeny/default.nix b/checks/cargoDeny/default.nix index e4c400a0..7f3cb736 100644 --- a/checks/cargoDeny/default.nix +++ b/checks/cargoDeny/default.nix @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 # Copyright (c) 2024 Matter Labs -{ teepotCrate }: teepotCrate.craneLib.cargoDeny ( - teepotCrate.commonArgs // { +{ teepot }: teepot.teepot.passthru.craneLib.cargoDeny ( + teepot.teepot.passthru.commonArgs // { pname = "teepot"; } ) diff --git a/checks/cargoFmt/default.nix b/checks/cargoFmt/default.nix index cc8e631c..4f60a7f8 100644 --- a/checks/cargoFmt/default.nix +++ b/checks/cargoFmt/default.nix @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 # Copyright (c) 2024 Matter Labs -{ teepotCrate }: teepotCrate.craneLib.cargoFmt ( - teepotCrate.commonArgs // { +{ teepot }: teepot.teepot.passthru.craneLib.cargoFmt ( + teepot.teepot.passthru.commonArgs // { pname = "teepot"; } )