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

37 lines
623 B
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'';
license = licenses.lgpl21Plus;
maintainers = with maintainers; [raskin];
platforms = platforms.unix;
2016-10-10 15:55:47 +01:00
};
}