Unverified Commit e7a9ba71 authored by patka's avatar patka
Browse files

givaro_3: drop

The regular givaro is up-to-date and this version is at least 10 years old (upstream moved to Github at version 4 so I used that as a reference) and unmaintained. There's nothing that relies on it anymore.
parent 5c462f5e
Loading
Loading
Loading
Loading
+0 −33
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchurl,
  automake,
  autoconf,
  libtool,
  autoreconfHook,
  gmpxx,
}:
stdenv.mkDerivation rec {
  pname = "givaro";
  version = "3.8.0";
  src = fetchurl {
    url = "https://forge.imag.fr/frs/download.php/592/givaro-${version}.tar.gz";
    sha256 = "1822ksv8653a84hvcz0vxl3nk8dqz7d41ys8rplq0zjjmvb2i5yq";
  };
  nativeBuildInputs = [
    autoreconfHook
    autoconf
    automake
  ];
  buildInputs = [
    libtool
    gmpxx
  ];
  meta = {
    description = "C++ library for arithmetic and algebraic computations";
    license = lib.licenses.cecill-b;
    maintainers = [ lib.maintainers.raskin ];
    platforms = lib.platforms.linux;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -743,7 +743,7 @@ mapAliases {
    svn_all_fast_export = svn-all-fast-export;
    topGit = top-git;
  }; # Added 2021-01-14

  givaro_3 = throw "'givaro_3' has been removed as it is end-of-life. Consider using the up-to-date 'givaro' instead"; # Added 2025-05-07
  givaro_3_7 = throw "'givaro_3_7' has been removed as it is end-of-life. Consider using the up-to-date 'givaro' instead"; # Added 2025-05-07
  gkraken = throw "'gkraken' has been deprecated by upstream. Consider using the replacement 'coolercontrol' instead."; # Added 2024-11-22
  glew-egl = lib.warnOnInstantiate "'glew-egl' is now provided by 'glew' directly" glew; # Added 2024-08-11
+0 −1
Original line number Diff line number Diff line
@@ -8190,7 +8190,6 @@ with pkgs;
  };
  givaro = callPackage ../development/libraries/givaro { };
  givaro_3 = callPackage ../development/libraries/givaro/3.nix { };
  ghp-import = with python3Packages; toPythonApplication ghp-import;