about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2019-06-18 18:17:29 +0200
committerGitHub <noreply@github.com>2019-06-18 18:17:29 +0200
commitc93a7f4d812eaebfb55c10891d51371c5aca1857 (patch)
tree3572aa143fea9e0a0f1146e7582ce5d5bc8e3c07 /pkgs/development/interpreters
parent8ce4463d4a9c071a3c3464c73ae6005a3c0d99ca (diff)
parentd4d19e34db054ed8c10e8b704e28f1ad71556c67 (diff)
downloadnixlib-c93a7f4d812eaebfb55c10891d51371c5aca1857.tar
nixlib-c93a7f4d812eaebfb55c10891d51371c5aca1857.tar.gz
nixlib-c93a7f4d812eaebfb55c10891d51371c5aca1857.tar.bz2
nixlib-c93a7f4d812eaebfb55c10891d51371c5aca1857.tar.lz
nixlib-c93a7f4d812eaebfb55c10891d51371c5aca1857.tar.xz
nixlib-c93a7f4d812eaebfb55c10891d51371c5aca1857.tar.zst
nixlib-c93a7f4d812eaebfb55c10891d51371c5aca1857.zip
Merge pull request #63295 from ehamberg/patch-2
Don't use autoreconfHook for building Erlang/OTP
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/erlang/generic-builder.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/erlang/generic-builder.nix b/pkgs/development/interpreters/erlang/generic-builder.nix
index bc0b728ecce4..914c3a0f5cfe 100644
--- a/pkgs/development/interpreters/erlang/generic-builder.nix
+++ b/pkgs/development/interpreters/erlang/generic-builder.nix
@@ -1,5 +1,5 @@
 { pkgs, stdenv, fetchFromGitHub, makeWrapper, gawk, gnum4, gnused
-, libxml2, libxslt, ncurses, openssl, perl, autoreconfHook
+, libxml2, libxslt, ncurses, openssl, perl, autoconf
 , openjdk ? null # javacSupport
 , unixODBC ? null # odbcSupport
 , libGLU_combined ? null, wxGTK ? null, wxmac ? null, xorg ? null # wxSupport
@@ -48,7 +48,7 @@ in stdenv.mkDerivation ({
 
   inherit src version;
 
-  nativeBuildInputs = [ autoreconfHook makeWrapper perl gnum4 libxslt libxml2 ];
+  nativeBuildInputs = [ autoconf makeWrapper perl gnum4 libxslt libxml2 ];
 
   buildInputs = [ ncurses openssl ]
     ++ optionals wxSupport wxPackages2