python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / fplll / default.nix
blobba461b08f9e9ef602e0d637419fb1f2252dbe8b3
1 { lib, stdenv
2 , fetchFromGitHub
3 , pkg-config
4 , gettext
5 , autoreconfHook
6 , gmp
7 , mpfr
8 }:
10 stdenv.mkDerivation rec {
11   pname = "fplll";
12   version = "5.4.2";
14   src = fetchFromGitHub {
15     owner = "fplll";
16     repo = "fplll";
17     rev = version;
18     sha256 = "sha256-6pzErZtT5xzCMcsNy2EwrZHiAICLrRl1dv59bp23hAA=";
19   };
21   nativeBuildInputs = [
22     pkg-config
23     gettext
24     autoreconfHook
25   ];
27   buildInputs = [
28     gmp
29     mpfr
30   ];
32   meta = with lib; {
33     description = "Lattice algorithms using floating-point arithmetic";
34     changelog = [
35       # Some release notes are added to the github tags, though they are not
36       # always complete.
37       "https://github.com/fplll/fplll/releases/tag/${version}"
38       # Releases are announced on this mailing list. Unfortunately it is not
39       # possible to generate a direct link to the most recent announcement, but
40       # this search should find it.
41       "https://groups.google.com/forum/#!searchin/fplll-devel/FPLLL$20${version}"
42     ];
43     license = licenses.lgpl21Plus;
44     maintainers = teams.sage.members;
45     platforms = platforms.unix;
46   };