fplll: init at 5.0.2
This commit is contained in:
parent
22821970ba
commit
e405c88d5b
23
pkgs/development/libraries/fplll/default.nix
Normal file
23
pkgs/development/libraries/fplll/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{stdenv, fetchFromGitHub, autoconf, automake, libtool, gettext, autoreconfHook
|
||||
, gmp, mpfr
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "fplll";
|
||||
version = "5.0.2";
|
||||
src = fetchFromGitHub {
|
||||
owner = "${pname}";
|
||||
repo = "${pname}";
|
||||
rev = "${version}";
|
||||
sha256 = "0rl98rx284giyhj3pf6iydn1a06jis8c8mnsc7kqs4rcmiw4bjpx";
|
||||
};
|
||||
nativeBuildInputs = [autoconf automake libtool gettext autoreconfHook];
|
||||
buildInputs = [gmp mpfr];
|
||||
meta = {
|
||||
inherit version;
|
||||
description = ''Lattice algorithms using floating-point arithmetic'';
|
||||
license = stdenv.lib.licenses.lgpl21Plus;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -6885,6 +6885,8 @@ in
|
||||
|
||||
fmod42416 = callPackage ../development/libraries/fmod/4.24.16.nix { };
|
||||
|
||||
fplll = callPackage ../development/libraries/fplll {};
|
||||
|
||||
freeimage = callPackage ../development/libraries/freeimage { };
|
||||
|
||||
freetts = callPackage ../development/libraries/freetts { };
|
||||
|
Loading…
Reference in New Issue
Block a user