nixpkgs/pkgs/by-name/cl/clangbuildanalyzer/package.nix
Jade Lovelace 5dfb548004 maintainers: remove lf-
Over the last few months I have had at least a half dozen points points
when I have wanted to resign, and my biggest regret is that you can only
resign once.

After the previous such opportunity, I was emotionally done.

Today's shameful incident has made it abundantly clear I am not welcome.
Let's make that official.

It's been a long run and I've met a lot of lovely people working on the
Nix ecosystem. Let's hope that the technology lives on, and that I can
keep working with the lovely people I have spent most of my time working
with, *but outside of Nix*.
2024-07-02 02:07:50 +02:00

26 lines
647 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 = [ ];
license = lib.licenses.unlicense;
platforms = lib.platforms.unix;
mainProgram = "ClangBuildAnalyzer";
};
})