Skip to content

Commit

Permalink
Merge pull request #120886 from eduardosm/mpfi
Browse files Browse the repository at this point in the history
mpfi: use autoreconfHook
  • Loading branch information
7c6f434c committed Apr 28, 2021
2 parents ec9a51b + 088b3db commit e7e72e0
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions pkgs/development/libraries/mpfi/default.nix
Original file line number Diff line number Diff line change
@@ -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";
Expand All @@ -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";
Expand Down

0 comments on commit e7e72e0

Please sign in to comment.