erlang: remove explicit gcc dependency

This commit is contained in:
Daiderd Jordan 2017-08-03 21:22:30 +02:00
parent d604336b5b
commit eaf9faef60
No known key found for this signature in database
GPG Key ID: D02435D05B810C96

View File

@ -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