python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / gsl / default.nix
blob0d14630bda3b0bdad2b8d5633dbd115fefb962d6
1 { fetchurl, lib, stdenv }:
3 stdenv.mkDerivation rec {
4   pname = "gsl";
5   version = "2.7.1";
7   src = fetchurl {
8     url = "mirror://gnu/gsl/${pname}-${version}.tar.gz";
9     sha256 = "sha256-3LD71DBIgyt1f/mUJpGo3XACbV2g/4VgHlJof23us0s=";
10   };
12   preConfigure = if (lib.versionAtLeast stdenv.hostPlatform.darwinMinVersion "11" && stdenv.isDarwin) then ''
13     MACOSX_DEPLOYMENT_TARGET=10.16
14   '' else null;
16   # do not let -march=skylake to enable FMA (https://lists.gnu.org/archive/html/bug-gsl/2011-11/msg00019.html)
17   NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isx86_64 "-mno-fma";
19   # https://lists.gnu.org/archive/html/bug-gsl/2015-11/msg00012.html
20   doCheck = stdenv.hostPlatform.system != "i686-linux";
22   meta = {
23     description = "The GNU Scientific Library, a large numerical library";
24     homepage = "https://www.gnu.org/software/gsl/";
25     license = lib.licenses.gpl3Plus;
27     longDescription = ''
28       The GNU Scientific Library (GSL) is a numerical library for C
29       and C++ programmers.  It is free software under the GNU General
30       Public License.
32       The library provides a wide range of mathematical routines such
33       as random number generators, special functions and least-squares
34       fitting.  There are over 1000 functions in total with an
35       extensive test suite.
36     '';
37     platforms = lib.platforms.unix;
38   };