about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2020-02-19 19:57:34 -0800
committerCole Helbling <cole.e.helbling@outlook.com>2020-02-19 20:03:56 -0800
commit2edec098de2479304d91c9b69dc3067c4dc14a3c (patch)
tree5be35499f2093fdebdd99f796eec80e4c5610e18 /pkgs/development/compilers
parentae56e261619371c6af7412e09488bd61c9c2a499 (diff)
downloadnixlib-2edec098de2479304d91c9b69dc3067c4dc14a3c.tar
nixlib-2edec098de2479304d91c9b69dc3067c4dc14a3c.tar.gz
nixlib-2edec098de2479304d91c9b69dc3067c4dc14a3c.tar.bz2
nixlib-2edec098de2479304d91c9b69dc3067c4dc14a3c.tar.lz
nixlib-2edec098de2479304d91c9b69dc3067c4dc14a3c.tar.xz
nixlib-2edec098de2479304d91c9b69dc3067c4dc14a3c.tar.zst
nixlib-2edec098de2479304d91c9b69dc3067c4dc14a3c.zip
rls: add llvm to buildInputs
The Hydra build [1] was failing because it was unable to link `LLVM-9`.
Additionally, quote the homepage URL for compliance with RFC 45.

[1] https://hydra.nixos.org/build/112823631/nixlog/2
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/rust/rls/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/rust/rls/default.nix b/pkgs/development/compilers/rust/rls/default.nix
index 942e23c6170d..4cf507fbf5c7 100644
--- a/pkgs/development/compilers/rust/rls/default.nix
+++ b/pkgs/development/compilers/rust/rls/default.nix
@@ -23,7 +23,7 @@ rustPlatform.buildRustPackage {
   CARGO_BUILD_RUSTFLAGS = if stdenv.isDarwin then "-C rpath" else null;
 
   nativeBuildInputs = [ pkgconfig cmake ];
-  buildInputs = [ openssh openssl curl zlib libiconv ]
+  buildInputs = [ openssh openssl curl zlib libiconv rustPlatform.rust.rustc.llvm ]
     ++ (stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Security ]);
 
   doCheck = true;
@@ -37,7 +37,7 @@ rustPlatform.buildRustPackage {
 
   meta = with stdenv.lib; {
     description = "Rust Language Server - provides information about Rust programs to IDEs and other tools";
-    homepage = https://github.com/rust-lang/rls/;
+    homepage = "https://github.com/rust-lang/rls/";
     license = with licenses; [ asl20 /* or */ mit ];
     maintainers = with maintainers; [ symphorien ];
     platforms = platforms.all;