1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-17 02:14:36 +00:00
nixpkgs/pkgs/development/libraries/fplll/default.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, gettext
, autoreconfHook
, gmp
, mpfr
2016-10-10 15:55:47 +01:00
}:
2016-10-10 15:55:47 +01:00
stdenv.mkDerivation rec {
pname = "fplll";
version = "5.2.1";
2016-10-10 15:55:47 +01:00
src = fetchFromGitHub {
owner = "fplll";
repo = "fplll";
2019-09-09 00:38:31 +01:00
rev = version;
sha256 = "015qmrd7nfaysbv1hbwiprz9g6hnww1y1z1xw8f43ysb7k1b5nbg";
2016-10-10 15:55:47 +01: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}"
];
license = licenses.lgpl21Plus;
maintainers = with maintainers; [raskin];
platforms = platforms.unix;
2016-10-10 15:55:47 +01:00
};
}