givaro_3_7: 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.
This commit is contained in:
patka
2025-05-07 15:21:51 +02:00
parent c328e3ee9e
commit 5c462f5e08
3 changed files with 1 additions and 34 deletions
-33
View File
@@ -1,33 +0,0 @@
{
lib,
stdenv,
fetchurl,
automake,
autoconf,
libtool,
autoreconfHook,
gmpxx,
}:
stdenv.mkDerivation rec {
pname = "givaro";
version = "3.7.2";
src = fetchurl {
url = "https://forge.imag.fr/frs/download.php/370/givaro-${version}.tar.gz";
sha256 = "0lf5cnbyr27fw7klc3zabkb1979dn67jmrjz6pa3jzw2ng74x9b3";
};
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
View File
@@ -744,6 +744,7 @@ mapAliases {
topGit = top-git;
}; # Added 2021-01-14
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
glfw-wayland = glfw; # Added 2024-04-19
-1
View File
@@ -8191,7 +8191,6 @@ with pkgs;
givaro = callPackage ../development/libraries/givaro { };
givaro_3 = callPackage ../development/libraries/givaro/3.nix { };
givaro_3_7 = callPackage ../development/libraries/givaro/3.7.nix { };
ghp-import = with python3Packages; toPythonApplication ghp-import;