2019-12-09 07:11:20 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
2019-12-02 10:41:59 +00:00
|
|
|
, fetchpatch
|
2019-12-09 07:11:20 +00:00
|
|
|
, gettext
|
|
|
|
, autoreconfHook
|
|
|
|
, gmp
|
|
|
|
, mpfr
|
2016-10-10 15:55:47 +01:00
|
|
|
}:
|
2019-12-09 07:11:20 +00:00
|
|
|
|
2016-10-10 15:55:47 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "fplll";
|
2019-12-22 17:20:36 +00:00
|
|
|
version = "5.3.1";
|
2019-12-09 07:11:20 +00:00
|
|
|
|
2016-10-10 15:55:47 +01:00
|
|
|
src = fetchFromGitHub {
|
2019-12-09 07:11:20 +00:00
|
|
|
owner = "fplll";
|
|
|
|
repo = "fplll";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2019-12-22 17:20:36 +00:00
|
|
|
sha256 = "1bzlqavbch5smra75znh4ljr490wyx5v6hax8r9rjbgk605i33ns";
|
2016-10-10 15:55:47 +01:00
|
|
|
};
|
2019-12-09 07:11:20 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
gettext
|
|
|
|
autoreconfHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gmp
|
|
|
|
mpfr
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-10-10 15:55:47 +01:00
|
|
|
description = ''Lattice algorithms using floating-point arithmetic'';
|
2019-12-09 07:20:03 +00:00
|
|
|
changelog = [
|
|
|
|
# Some release notes are added to the github tags, though they are not
|
|
|
|
# always complete.
|
|
|
|
"https://github.com/fplll/fplll/releases/tag/${version}"
|
|
|
|
# Releases are announced on this mailing list. Unfortunately it is not
|
|
|
|
# possible to generate a direct link to the most recent announcement, but
|
|
|
|
# this search should find it.
|
|
|
|
"https://groups.google.com/forum/#!searchin/fplll-devel/FPLLL$20${version}"
|
|
|
|
];
|
2019-12-09 07:11:20 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2019-12-09 07:20:20 +00:00
|
|
|
maintainers = with maintainers; [raskin timokau];
|
2019-12-09 07:11:20 +00:00
|
|
|
platforms = platforms.unix;
|
2016-10-10 15:55:47 +01:00
|
|
|
};
|
|
|
|
}
|