mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
5dfb548004
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*.
26 lines
647 B
Nix
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";
|
|
};
|
|
})
|