nixpkgs/pkgs/development/libraries/fplll/default.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, fetchpatch
, gettext
, autoreconfHook
, gmp
, mpfr
2016-10-10 16:55:47 +02:00
}:
2016-10-10 16:55:47 +02:00
stdenv.mkDerivation rec {
pname = "fplll";
2020-01-21 16:39:59 +01:00
version = "5.3.2";
2016-10-10 16:55:47 +02:00
src = fetchFromGitHub {
owner = "fplll";
repo = "fplll";
2019-09-09 01:38:31 +02:00
rev = version;
2020-01-21 16:39:59 +01:00
sha256 = "00iyz218ywspizjiimrjdcqvdqmrsb2367zyy3vkmypnf9i9l680";
2016-10-10 16:55:47 +02:00
};
nativeBuildInputs = [
gettext
autoreconfHook
];
buildInputs = [
gmp
mpfr
];
meta = with stdenv.lib; {
2016-10-10 16:55:47 +02:00
description = ''Lattice algorithms using floating-point arithmetic'';
2019-12-09 08:20:03 +01: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}"
];
license = licenses.lgpl21Plus;
maintainers = with maintainers; [raskin timokau];
platforms = platforms.unix;
2016-10-10 16:55:47 +02:00
};
}