mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 12:14:40 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
106 lines
3.0 KiB
Nix
106 lines
3.0 KiB
Nix
# If the tests are broken, it's probably for one of two reasons:
|
|
#
|
|
# 1. The version of llvm used doesn't match the expectations of rustc and/or
|
|
# cargo-llvm-cov.
|
|
# 2. Nixpkgs has changed its rust infrastructure in a way that causes
|
|
# cargo-llvm-cov to misbehave under test. It's likely that even though the
|
|
# tests are failing, cargo-llvm-cov will still function properly in actual
|
|
# use. This has happened before, and is described [here][0] (along with a
|
|
# feature request that would fix this instance of the problem).
|
|
#
|
|
# For previous test-troubleshooting discussion, see [here][1].
|
|
#
|
|
# [0]: https://github.com/taiki-e/cargo-llvm-cov/issues/242
|
|
# [1]: https://github.com/NixOS/nixpkgs/pull/197478
|
|
|
|
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
llvmPackages_19,
|
|
git,
|
|
}:
|
|
|
|
let
|
|
pname = "cargo-llvm-cov";
|
|
version = "0.6.14";
|
|
|
|
owner = "taiki-e";
|
|
homepage = "https://github.com/${owner}/${pname}";
|
|
|
|
inherit (llvmPackages_19) llvm;
|
|
|
|
# Download `Cargo.lock` from crates.io so we don't clutter up Nixpkgs
|
|
cargoLock = fetchurl {
|
|
name = "Cargo.lock";
|
|
url = "https://crates.io/api/v1/crates/${pname}/${version}/download";
|
|
sha256 = "sha256-f0xO+UxB9f6q6q8QyjtP+z+U146+8GLmLKgGmAs/YYA=";
|
|
downloadToTemp = true;
|
|
postFetch = ''
|
|
tar xzf $downloadedFile ${pname}-${version}/Cargo.lock
|
|
mv ${pname}-${version}/Cargo.lock $out
|
|
'';
|
|
};
|
|
in
|
|
|
|
rustPlatform.buildRustPackage {
|
|
inherit pname version;
|
|
|
|
# Use `fetchFromGitHub` instead of `fetchCrate` because the latter does not
|
|
# pull in fixtures needed for the test suite
|
|
src = fetchFromGitHub {
|
|
inherit owner;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-iJrnNDSMich5OzEbPgnQWLVz6Zj/MUIzEsaBzqVdoDg=";
|
|
};
|
|
|
|
# Upstream doesn't include the lockfile so we need to add it back
|
|
postUnpack = ''
|
|
cp ${cargoLock} source/Cargo.lock
|
|
'';
|
|
|
|
cargoHash = "sha256-kYKQ7ddgoSvarF0HG/yESu5cU87DUgYm9tDkem5a/gw=";
|
|
|
|
# `cargo-llvm-cov` reads these environment variables to find these binaries,
|
|
# which are needed to run the tests
|
|
LLVM_COV = "${llvm}/bin/llvm-cov";
|
|
LLVM_PROFDATA = "${llvm}/bin/llvm-profdata";
|
|
|
|
nativeCheckInputs = [
|
|
git
|
|
];
|
|
|
|
# `cargo-llvm-cov` tests rely on `git ls-files.
|
|
preCheck = ''
|
|
git init -b main
|
|
git add .
|
|
'';
|
|
|
|
meta = {
|
|
inherit homepage;
|
|
changelog = homepage + "/blob/v${version}/CHANGELOG.md";
|
|
description = "Cargo subcommand to easily use LLVM source-based code coverage";
|
|
mainProgram = "cargo-llvm-cov";
|
|
longDescription = ''
|
|
In order for this to work, you either need to run `rustup component add llvm-
|
|
tools-preview` or install the `llvm-tools-preview` component using your Nix
|
|
library (e.g. fenix or rust-overlay)
|
|
'';
|
|
license = with lib.licenses; [
|
|
asl20 # or
|
|
mit
|
|
];
|
|
maintainers = with lib.maintainers; [
|
|
wucke13
|
|
matthiasbeyer
|
|
CobaltCause
|
|
];
|
|
|
|
# The profiler runtime is (currently) disabled on non-Linux platforms
|
|
broken = !(stdenv.hostPlatform.isLinux && !stdenv.targetPlatform.isRedox);
|
|
};
|
|
}
|