Merge pull request #120886 from eduardosm/mpfi

mpfi: use autoreconfHook

authored by

Michael Raskin and committed by
GitHub
e7e72e07 ec9a51b7

+2 -6
+2 -6
pkgs/development/libraries/mpfi/default.nix
··· 1 - {lib, stdenv, fetchurl, autoconf, automake, libtool, texinfo, mpfr}: 2 stdenv.mkDerivation rec { 3 pname = "mpfi"; 4 version = "1.5.4"; ··· 12 sha256 = "sha256-Ozk4WV1yCvF5c96vcnz8DdQcixbCCtwQOpcPSkOuOlY="; 13 }; 14 15 - nativeBuildInputs = [ autoconf automake libtool texinfo ]; 16 buildInputs = [ mpfr ]; 17 - 18 - preConfigure = '' 19 - ./autogen.sh 20 - ''; 21 22 meta = { 23 inherit version;
··· 1 + {lib, stdenv, fetchurl, autoreconfHook, texinfo, mpfr}: 2 stdenv.mkDerivation rec { 3 pname = "mpfi"; 4 version = "1.5.4"; ··· 12 sha256 = "sha256-Ozk4WV1yCvF5c96vcnz8DdQcixbCCtwQOpcPSkOuOlY="; 13 }; 14 15 + nativeBuildInputs = [ autoreconfHook texinfo ]; 16 buildInputs = [ mpfr ]; 17 18 meta = { 19 inherit version;