Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

erlang: remove explicit gcc dependency

+4 -4
+4 -4
pkgs/development/interpreters/erlang/generic-builder.nix
··· 1 1 { pkgs, stdenv, fetchurl, fetchFromGitHub, makeWrapper, gawk, gnum4, gnused 2 - , libxml2, libxslt, ncurses, openssl, perl, gcc, autoreconfHook 2 + , libxml2, libxslt, ncurses, openssl, perl, autoreconfHook 3 3 , openjdk ? null # javacSupport 4 4 , unixODBC ? null # odbcSupport 5 5 , mesa ? null, wxGTK ? null, wxmac ? null, xorg ? null # wxSupport ··· 47 47 48 48 inherit src version; 49 49 50 - buildInputs = 51 - [ perl gnum4 ncurses openssl autoreconfHook libxslt libxml2 makeWrapper gcc 52 - ] 50 + nativeBuildInputs = [ autoreconfHook makeWrapper perl ]; 51 + 52 + buildInputs = [ gnum4 ncurses openssl autoreconfHook libxslt libxml2 ] 53 53 ++ optionals wxSupport wxPackages2 54 54 ++ optionals odbcSupport odbcPackages 55 55 ++ optionals javacSupport javacPackages