mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
5878d1fe1a
This is a neat little package that lets you trace your clang builds and immediately find where all your build time went. In about half an hour, I knocked 15% of build time off a project by strategic header splitting.
26 lines
673 B
Nix
26 lines
673 B
Nix
{ stdenv, lib, cmake, fetchFromGitHub }:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "clangbuildanalyzer";
|
|
version = "1.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aras-p";
|
|
repo = "ClangBuildAnalyzer";
|
|
rev = "v${finalAttrs.version}";
|
|
sha256 = "sha256-kmgdk634zM0W0OoRoP/RzepArSipa5bNqdVgdZO9gxo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
meta = {
|
|
description = "Tool for analyzing Clang's -ftime-trace files";
|
|
homepage = "https://github.com/aras-p/ClangBuildAnalyzer";
|
|
maintainers = with lib.maintainers; [ lf- ];
|
|
license = lib.licenses.unlicense;
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "ClangBuildAnalyzer";
|
|
};
|
|
})
|