mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #27911 from LnL7/erlang-no-gcc
erlang: remove explicit gcc dependency
This commit is contained in:
commit
44c354317d
@ -1,5 +1,5 @@
|
||||
{ pkgs, stdenv, fetchurl, fetchFromGitHub, makeWrapper, gawk, gnum4, gnused
|
||||
, libxml2, libxslt, ncurses, openssl, perl, gcc, autoreconfHook
|
||||
, libxml2, libxslt, ncurses, openssl, perl, autoreconfHook
|
||||
, openjdk ? null # javacSupport
|
||||
, unixODBC ? null # odbcSupport
|
||||
, mesa ? null, wxGTK ? null, wxmac ? null, xorg ? null # wxSupport
|
||||
@ -47,9 +47,9 @@ in stdenv.mkDerivation ({
|
||||
|
||||
inherit src version;
|
||||
|
||||
buildInputs =
|
||||
[ perl gnum4 ncurses openssl autoreconfHook libxslt libxml2 makeWrapper gcc
|
||||
]
|
||||
nativeBuildInputs = [ autoreconfHook makeWrapper perl ];
|
||||
|
||||
buildInputs = [ gnum4 ncurses openssl autoreconfHook libxslt libxml2 ]
|
||||
++ optionals wxSupport wxPackages2
|
||||
++ optionals odbcSupport odbcPackages
|
||||
++ optionals javacSupport javacPackages
|
||||
|
Loading…
Reference in New Issue
Block a user