Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.5 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
rustPlatform,
writableTmpDirAsHomeHook,
versionCheckHook,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "tmc-cli";
version = "1.1.2";
src = fetchFromGitHub {
owner = "rage";
repo = "tmc-cli-rust";
tag = "v${finalAttrs.version}";
hash = "sha256-C7X+XTOqquqf/W29+A4wUUl6aDZYLlc5XokkIOrCbp0=";
};
cargoHash = "sha256-2KoHKTN1Jvyvk9ravi0a9D+RIFYa1KmHLJQzKT2iP9A=";
nativeCheckInputs = [
writableTmpDirAsHomeHook
];
checkFlags = lib.optionals stdenv.hostPlatform.isDarwin [
# When sandboxing, "Attempted to create a NULL object."
# https://github.com/mullvad/system-configuration-rs/pull/59 may fix.
"--skip=commands::courses::tests::list_courses_with_client_test"
# Same
"--skip=all_integration_tests"
# When sandboxing, "Lazy instance has previously been poisoned."
"--skip=commands::exercises::tests::list_exercises_with_client_test"
];
nativeInstallCheckInputs = [
versionCheckHook
];
doInstallCheck = true;
versionCheckProgram = "${placeholder "out"}/bin/${finalAttrs.meta.mainProgram}";
versionCheckProgramArg = "--version";
__darwinAllowLocalNetworking = true;
meta = {
description = "CLI for using the TestMyCode programming assignment evaluator";
homepage = "https://github.com/rage/tmc-cli-rust";
changelog = "https://github.com/rage/tmc-cli-rust/releases/tag/v${finalAttrs.version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ hekazu ];
mainProgram = "tmc";
};
})