Merge pull request #201108 from wegank/gsl-1-drop

gsl_1: drop

authored by

ajs124 and committed by
GitHub
6638106e 86481573

+1 -53
-51
pkgs/development/libraries/gsl/gsl-1_16.nix
··· 1 - { fetchurl, fetchpatch, lib, stdenv }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "gsl"; 5 - version = "1.16"; 6 - 7 - src = fetchurl { 8 - url = "mirror://gnu/gsl/gsl-${version}.tar.gz"; 9 - sha256 = "0lrgipi0z6559jqh82yx8n4xgnxkhzj46v96dl77hahdp58jzg3k"; 10 - }; 11 - 12 - # do not let -march=skylake to enable FMA (https://lists.gnu.org/archive/html/bug-gsl/2011-11/msg00019.html) 13 - NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isx86_64 "-mno-fma"; 14 - 15 - patches = [ 16 - (fetchpatch { 17 - name = "bug-39055.patch"; 18 - url = "https://git.savannah.gnu.org/cgit/gsl.git/patch/?id=9cc12d"; 19 - sha256 = "1bmrmihi28cly9g9pq54kkix2jy59y7cd7h5fw4v1c7h5rc2qvs8"; 20 - }) 21 - 22 - (fetchpatch { 23 - name = "fix-parallel-test.patch"; 24 - url = "https://git.savannah.gnu.org/cgit/gsl.git/patch/?id=12654373c3b60541230921aae81f93b484ec5eaf"; 25 - sha256 = "1flzpbsfj7gjywv6v9qvm8wpdrkbpj7shryinfdpb40y7si9njdw"; 26 - }) 27 - ]; 28 - 29 - enableParallelBuilding = true; 30 - doCheck = true; 31 - 32 - meta = { 33 - description = "The GNU Scientific Library, a large numerical library"; 34 - homepage = "https://www.gnu.org/software/gsl/"; 35 - license = lib.licenses.gpl3Plus; 36 - 37 - longDescription = '' 38 - The GNU Scientific Library (GSL) is a numerical library for C 39 - and C++ programmers. It is free software under the GNU General 40 - Public License. 41 - 42 - The library provides a wide range of mathematical routines such 43 - as random number generators, special functions and least-squares 44 - fitting. There are over 1000 functions in total with an 45 - extensive test suite. 46 - ''; 47 - platforms = lib.platforms.unix; 48 - # Failing "eigen" tests on aarch64. 49 - badPlatforms = [ "aarch64-linux" ]; 50 - }; 51 - }
+1
pkgs/top-level/aliases.nix
··· 582 582 gr-rds = gnuradio3_7.pkgs.rds; # Added 2019-05-27, changed 2020-10-16 583 583 grv = throw "grv has been dropped due to the lack of maintanence from upstream since 2019"; # Added 2022-06-01 584 584 gsettings_desktop_schemas = throw "'gsettings_desktop_schemas' has been renamed to/replaced by 'gsettings-desktop-schemas'"; # Converted to throw 2022-02-22 585 + gsl_1 = throw "'gsl_1' has been renamed to/replaced by 'gsl'"; # Added 2022-11-19 585 586 gtk_doc = throw "'gtk_doc' has been renamed to/replaced by 'gtk-doc'"; # Converted to throw 2022-02-22 586 587 gtklick = throw "gtklick has been removed from nixpkgs as the project is stuck on python2"; # Added 2022-01-01 587 588 gtmess = throw "gtmess has been removed, because it was a MSN client."; # add 2021-12-15
-2
pkgs/top-level/all-packages.nix
··· 19321 19321 19322 19322 gsl = callPackage ../development/libraries/gsl { }; 19323 19323 19324 - gsl_1 = callPackage ../development/libraries/gsl/gsl-1_16.nix { }; 19325 - 19326 19324 gsl-lite = callPackage ../development/libraries/gsl-lite { }; 19327 19325 19328 19326 gsm = callPackage ../development/libraries/gsm {};