Merge pull request #120886 from eduardosm/mpfi

mpfi: use autoreconfHook
This commit is contained in:
Michael Raskin 2021-04-28 10:57:37 +00:00 committed by GitHub
commit e7e72e070b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{lib, stdenv, fetchurl, autoconf, automake, libtool, texinfo, mpfr}:
{lib, stdenv, fetchurl, autoreconfHook, texinfo, mpfr}:
stdenv.mkDerivation rec {
pname = "mpfi";
version = "1.5.4";
@ -12,13 +12,9 @@ stdenv.mkDerivation rec {
sha256 = "sha256-Ozk4WV1yCvF5c96vcnz8DdQcixbCCtwQOpcPSkOuOlY=";
};
nativeBuildInputs = [ autoconf automake libtool texinfo ];
nativeBuildInputs = [ autoreconfHook texinfo ];
buildInputs = [ mpfr ];
preConfigure = ''
./autogen.sh
'';
meta = {
inherit version;
description = "A multiple precision interval arithmetic library based on MPFR";