mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
63a7d5b3fb
* gmp: fixup license of v6 As per https://gmplib.org/: ``` Since version 6, GMP is distributed under the dual licenses, GNU LGPL v3 and GNU GPL v2. These licenses make the library free to use, share, and improve, and allow you to pass on the result. The GNU licenses give freedoms, but also set firm restrictions on the use with non-free programs. ``` The license changed in GMP v6. * Fixup license versions
96 lines
3.8 KiB
Nix
96 lines
3.8 KiB
Nix
{ lib, stdenv, fetchurl, m4
|
|
, cxx ? !stdenv.hostPlatform.useAndroidPrebuilt && !stdenv.hostPlatform.isWasm
|
|
, buildPackages
|
|
, withStatic ? stdenv.hostPlatform.isStatic
|
|
}:
|
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
# files.
|
|
|
|
let inherit (lib) optional; in
|
|
|
|
let self = stdenv.mkDerivation rec {
|
|
pname = "gmp${lib.optionalString cxx "-with-cxx"}";
|
|
version = "6.2.1";
|
|
|
|
src = fetchurl { # we need to use bz2, others aren't in bootstrapping stdenv
|
|
urls = [ "mirror://gnu/gmp/gmp-${version}.tar.bz2" "ftp://ftp.gmplib.org/pub/gmp-${version}/gmp-${version}.tar.bz2" ];
|
|
sha256 = "0z2ddfiwgi0xbf65z4fg4hqqzlhv0cc6hdcswf3c6n21xdmk5sga";
|
|
};
|
|
|
|
patches = [ ./6.2.1-CVE-2021-43618.patch ];
|
|
|
|
#outputs TODO: split $cxx due to libstdc++ dependency
|
|
# maybe let ghc use a version with *.so shared with rest of nixpkgs and *.a added
|
|
# - see #5855 for related discussion
|
|
outputs = [ "out" "dev" "info" ];
|
|
passthru.static = self.out;
|
|
|
|
strictDeps = true;
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
nativeBuildInputs = [ m4 ];
|
|
|
|
configureFlags = [
|
|
"--with-pic"
|
|
(lib.enableFeature cxx "cxx")
|
|
# Build a "fat binary", with routines for several sub-architectures
|
|
# (x86), except on Solaris where some tests crash with "Memory fault".
|
|
# See <https://hydra.nixos.org/build/2760931>, for instance.
|
|
#
|
|
# no darwin because gmp uses ASM that clang doesn't like
|
|
(lib.enableFeature (!stdenv.isSunOS && stdenv.hostPlatform.isx86) "fat")
|
|
# The config.guess in GMP tries to runtime-detect various
|
|
# ARM optimization flags via /proc/cpuinfo (and is also
|
|
# broken on multicore CPUs). Avoid this impurity.
|
|
"--build=${stdenv.buildPlatform.config}"
|
|
] ++ optional (cxx && stdenv.isDarwin) "CPPFLAGS=-fexceptions"
|
|
++ optional (stdenv.isDarwin && stdenv.is64bit) "ABI=64"
|
|
# to build a .dll on windows, we need --disable-static + --enable-shared
|
|
# see https://gmplib.org/manual/Notes-for-Particular-Systems.html
|
|
++ optional (!withStatic && stdenv.hostPlatform.isWindows) "--disable-static --enable-shared"
|
|
++ optional (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) "--disable-assembly";
|
|
|
|
doCheck = true; # not cross;
|
|
|
|
dontDisableStatic = withStatic;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gmplib.org/";
|
|
description = "GNU multiple precision arithmetic library";
|
|
license = with licenses; [
|
|
lgpl3Only
|
|
gpl2Only
|
|
];
|
|
|
|
longDescription =
|
|
'' GMP is a free library for arbitrary precision arithmetic, operating
|
|
on signed integers, rational numbers, and floating point numbers.
|
|
There is no practical limit to the precision except the ones implied
|
|
by the available memory in the machine GMP runs on. GMP has a rich
|
|
set of functions, and the functions have a regular interface.
|
|
|
|
The main target applications for GMP are cryptography applications
|
|
and research, Internet security applications, algebra systems,
|
|
computational algebra research, etc.
|
|
|
|
GMP is carefully designed to be as fast as possible, both for small
|
|
operands and for huge operands. The speed is achieved by using
|
|
fullwords as the basic arithmetic type, by using fast algorithms,
|
|
with highly optimised assembly code for the most common inner loops
|
|
for a lot of CPUs, and by a general emphasis on speed.
|
|
|
|
GMP is faster than any other bignum library. The advantage for GMP
|
|
increases with the operand sizes for many operations, since GMP uses
|
|
asymptotically faster algorithms.
|
|
'';
|
|
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.vrthra ];
|
|
};
|
|
};
|
|
in self
|