about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2017-08-03 21:22:30 +0200
committerDaiderd Jordan <daiderd@gmail.com>2017-08-03 21:22:30 +0200
commiteaf9faef60ad4e927e5c9dc18550eb59fb2904ea (patch)
tree842400f84eba28903ad90bdb58c4fad664be5166 /pkgs
parentd604336b5b8a2434e2289d1d59c8b1c6ee186e3f (diff)
downloadnixlib-eaf9faef60ad4e927e5c9dc18550eb59fb2904ea.tar
nixlib-eaf9faef60ad4e927e5c9dc18550eb59fb2904ea.tar.gz
nixlib-eaf9faef60ad4e927e5c9dc18550eb59fb2904ea.tar.bz2
nixlib-eaf9faef60ad4e927e5c9dc18550eb59fb2904ea.tar.lz
nixlib-eaf9faef60ad4e927e5c9dc18550eb59fb2904ea.tar.xz
nixlib-eaf9faef60ad4e927e5c9dc18550eb59fb2904ea.tar.zst
nixlib-eaf9faef60ad4e927e5c9dc18550eb59fb2904ea.zip
erlang: remove explicit gcc dependency
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/interpreters/erlang/generic-builder.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/interpreters/erlang/generic-builder.nix b/pkgs/development/interpreters/erlang/generic-builder.nix
index 1fdfe4ca61dd..897f84f94ada 100644
--- a/pkgs/development/interpreters/erlang/generic-builder.nix
+++ b/pkgs/development/interpreters/erlang/generic-builder.nix
@@ -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