Merge pull request #34177 from dtzWill/fix/llvm-remove-unneeded-deps
llvm-{4,5}: remove perl, groff -- not needed
This commit is contained in:
commit
796e2e8c75
|
@ -1,8 +1,6 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, fetch
|
, fetch
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
, perl
|
|
||||||
, groff
|
|
||||||
, cmake
|
, cmake
|
||||||
, python
|
, python
|
||||||
, libffi
|
, libffi
|
||||||
|
@ -41,7 +39,7 @@ in stdenv.mkDerivation (rec {
|
||||||
outputs = [ "out" ]
|
outputs = [ "out" ]
|
||||||
++ stdenv.lib.optional enableSharedLibraries "lib";
|
++ stdenv.lib.optional enableSharedLibraries "lib";
|
||||||
|
|
||||||
nativeBuildInputs = [ perl groff cmake python ]
|
nativeBuildInputs = [ cmake python ]
|
||||||
++ stdenv.lib.optional enableManpages python.pkgs.sphinx;
|
++ stdenv.lib.optional enableManpages python.pkgs.sphinx;
|
||||||
|
|
||||||
buildInputs = [ libxml2 libffi ]
|
buildInputs = [ libxml2 libffi ]
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, fetch
|
, fetch
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
, perl
|
|
||||||
, groff
|
|
||||||
, cmake
|
, cmake
|
||||||
, python
|
, python
|
||||||
, libffi
|
, libffi
|
||||||
|
@ -41,7 +39,7 @@ in stdenv.mkDerivation (rec {
|
||||||
outputs = [ "out" ]
|
outputs = [ "out" ]
|
||||||
++ stdenv.lib.optional enableSharedLibraries "lib";
|
++ stdenv.lib.optional enableSharedLibraries "lib";
|
||||||
|
|
||||||
nativeBuildInputs = [ perl groff cmake python ]
|
nativeBuildInputs = [ cmake python ]
|
||||||
++ stdenv.lib.optional enableManpages python.pkgs.sphinx;
|
++ stdenv.lib.optional enableManpages python.pkgs.sphinx;
|
||||||
|
|
||||||
buildInputs = [ libxml2 libffi ]
|
buildInputs = [ libxml2 libffi ]
|
||||||
|
|
Loading…
Reference in New Issue