nixpkgs/pkgs/development/libraries/fplll/default.nix
Timo Kaufmann 0fa66219cc fplll: clean up dependencies
autoreconfHook implies autotools.
2019-12-11 10:32:46 +01:00

37 lines
623 B
Nix

{ stdenv
, fetchFromGitHub
, gettext
, autoreconfHook
, gmp
, mpfr
}:
stdenv.mkDerivation rec {
pname = "fplll";
version = "5.2.1";
src = fetchFromGitHub {
owner = "fplll";
repo = "fplll";
rev = version;
sha256 = "015qmrd7nfaysbv1hbwiprz9g6hnww1y1z1xw8f43ysb7k1b5nbg";
};
nativeBuildInputs = [
gettext
autoreconfHook
];
buildInputs = [
gmp
mpfr
];
meta = with stdenv.lib; {
description = ''Lattice algorithms using floating-point arithmetic'';
license = licenses.lgpl21Plus;
maintainers = with maintainers; [raskin];
platforms = platforms.unix;
};
}