summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@yahoo.com>2018-01-22 19:26:29 -0500
committerGitHub <noreply@github.com>2018-01-22 19:26:29 -0500
commit796e2e8c75e91a460226d048be7d30cb7a9a3d11 (patch)
tree9058d787b3fe2dfc7e1153731fd643bd9279ad7c /pkgs/development/compilers
parent242703037b6f764d30fa4d571d5b7be93d8112d3 (diff)
parent7e52676240d2c28a619b804cb97f0a532d414eed (diff)
downloadnixlib-796e2e8c75e91a460226d048be7d30cb7a9a3d11.tar
nixlib-796e2e8c75e91a460226d048be7d30cb7a9a3d11.tar.gz
nixlib-796e2e8c75e91a460226d048be7d30cb7a9a3d11.tar.bz2
nixlib-796e2e8c75e91a460226d048be7d30cb7a9a3d11.tar.lz
nixlib-796e2e8c75e91a460226d048be7d30cb7a9a3d11.tar.xz
nixlib-796e2e8c75e91a460226d048be7d30cb7a9a3d11.tar.zst
nixlib-796e2e8c75e91a460226d048be7d30cb7a9a3d11.zip
Merge pull request #34177 from dtzWill/fix/llvm-remove-unneeded-deps
llvm-{4,5}: remove perl, groff -- not needed
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/llvm/4/llvm.nix4
-rw-r--r--pkgs/development/compilers/llvm/5/llvm.nix4
2 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/compilers/llvm/4/llvm.nix b/pkgs/development/compilers/llvm/4/llvm.nix
index 711024c7d3ca..17a25889e64f 100644
--- a/pkgs/development/compilers/llvm/4/llvm.nix
+++ b/pkgs/development/compilers/llvm/4/llvm.nix
@@ -1,8 +1,6 @@
 { stdenv
 , fetch
 , fetchpatch
-, perl
-, groff
 , cmake
 , python
 , libffi
@@ -41,7 +39,7 @@ in stdenv.mkDerivation (rec {
   outputs = [ "out" ]
     ++ stdenv.lib.optional enableSharedLibraries "lib";
 
-  nativeBuildInputs = [ perl groff cmake python ]
+  nativeBuildInputs = [ cmake python ]
     ++ stdenv.lib.optional enableManpages python.pkgs.sphinx;
 
   buildInputs = [ libxml2 libffi ]
diff --git a/pkgs/development/compilers/llvm/5/llvm.nix b/pkgs/development/compilers/llvm/5/llvm.nix
index 400ffa341171..1f55e6c54e7d 100644
--- a/pkgs/development/compilers/llvm/5/llvm.nix
+++ b/pkgs/development/compilers/llvm/5/llvm.nix
@@ -1,8 +1,6 @@
 { stdenv
 , fetch
 , fetchpatch
-, perl
-, groff
 , cmake
 , python
 , libffi
@@ -41,7 +39,7 @@ in stdenv.mkDerivation (rec {
   outputs = [ "out" ]
     ++ stdenv.lib.optional enableSharedLibraries "lib";
 
-  nativeBuildInputs = [ perl groff cmake python ]
+  nativeBuildInputs = [ cmake python ]
     ++ stdenv.lib.optional enableManpages python.pkgs.sphinx;
 
   buildInputs = [ libxml2 libffi ]