llvmPackages_12: Improve and extend the meta attributes

This commit is contained in:
Michael Weiss
2021-04-15 18:41:38 +02:00
parent 859535c5df
commit 28887e7fe5
10 changed files with 144 additions and 52 deletions
@@ -1,4 +1,4 @@
{ lib, stdenv
{ lib, stdenv, llvm_meta
, fetch
, libunwind
, cmake
@@ -30,10 +30,16 @@ stdenv.mkDerivation rec {
moveToOutput lib "$dev"
'';
meta = {
description = "The LLVM Linker";
homepage = "https://lld.llvm.org/";
license = lib.licenses.ncsa;
platforms = lib.platforms.all;
meta = llvm_meta // {
homepage = "https://lld.llvm.org/";
description = "The LLVM linker";
longDescription = ''
LLD is a linker from the LLVM project that is a drop-in replacement for
system linkers and runs much faster than them. It also provides features
that are useful for toolchain developers.
The linker supports ELF (Unix), PE/COFF (Windows), Mach-O (macOS) and
WebAssembly in descending order of completeness. Internally, LLD consists
of several different linkers.
'';
};
}