nixpkgs/pkgs/development/compilers/llvm/6/lld.nix

34 lines
596 B
Nix
Raw Normal View History

2018-01-31 06:09:24 -08:00
{ stdenv
, fetch
, cmake
2018-01-31 06:50:18 -08:00
, libxml2
2018-01-31 06:09:24 -08:00
, llvm
, version
}:
stdenv.mkDerivation {
2019-08-13 14:52:01 -07:00
pname = "lld";
inherit version;
2018-01-31 06:09:24 -08:00
2018-06-28 13:58:05 -07:00
src = fetch "lld" "04afcfq2h7ysyqxxhyhb7ig4p0vdw7mi63kh8mffl74j0rc781p7";
2018-01-31 06:09:24 -08:00
nativeBuildInputs = [ cmake ];
2018-01-31 06:50:18 -08:00
buildInputs = [ llvm libxml2 ];
2018-01-31 06:09:24 -08:00
outputs = [ "out" "dev" ];
enableParallelBuilding = true;
postInstall = ''
moveToOutput include "$dev"
moveToOutput lib "$dev"
'';
meta = {
description = "The LLVM Linker";
homepage = "https://lld.llvm.org/";
2018-01-31 06:09:24 -08:00
license = stdenv.lib.licenses.ncsa;
platforms = stdenv.lib.platforms.all;
};
}