Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
730 B
Nix
40 lines
730 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoconf,
|
|
automake,
|
|
libtool,
|
|
gettext,
|
|
autoreconfHook,
|
|
gmp,
|
|
mpfr,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "fplll";
|
|
version = "20160331";
|
|
src = fetchFromGitHub {
|
|
owner = "fplll";
|
|
repo = "fplll";
|
|
rev = "11dea26c2f9396ffb7a7191aa371343f1f74c5c3";
|
|
sha256 = "1clxch9hbr30w6s84m2mprxv58adhg5qw6sa2p3jr1cy4r7r59ib";
|
|
};
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
libtool
|
|
gettext
|
|
autoreconfHook
|
|
];
|
|
buildInputs = [
|
|
gmp
|
|
mpfr
|
|
];
|
|
meta = {
|
|
description = "Lattice algorithms using floating-point arithmetic";
|
|
license = lib.licenses.lgpl21Plus;
|
|
maintainers = [ lib.maintainers.raskin ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|