libdynd: drop

This commit is contained in:
Sigmanificient
2026-03-24 01:06:12 +01:00
committed by Michael Daniels
parent c356f7c8bd
commit 5e877cb93d
2 changed files with 1 additions and 50 deletions
-50
View File
@@ -1,50 +0,0 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libdynd";
version = "0.7.2";
src = fetchFromGitHub {
owner = "libdynd";
repo = "libdynd";
rev = "v${finalAttrs.version}";
sha256 = "0fkd5rawqni1cq51fmr76iw7ll4fmbahfwv4rglnsabbkylf73pr";
};
cmakeFlags = [
"-DDYND_BUILD_BENCHMARKS=OFF"
];
env.NIX_CFLAGS_COMPILE = toString [
# added to fix build with gcc7+
"-Wno-error=implicit-fallthrough"
"-Wno-error=nonnull"
"-Wno-error=tautological-compare"
"-Wno-error=class-memaccess"
"-Wno-error=parentheses"
"-Wno-error=deprecated-copy"
# Needed with GCC 12
"-Wno-error=deprecated-declarations"
"-Wno-error=maybe-uninitialized"
];
nativeBuildInputs = [ cmake ];
outputs = [
"out"
"dev"
];
outputDoc = "dev";
meta = {
description = "C++ dynamic ndarray library, with Python exposure";
homepage = "http://libdynd.org";
license = lib.licenses.bsd2;
platforms = lib.platforms.linux;
};
})
+1
View File
@@ -1041,6 +1041,7 @@ mapAliases {
libdevil = throw "libdevil has been removed, as it was unmaintained in Nixpkgs and upstream since 2017"; # Added 2025-09-16
libdevil-nox = throw "libdevil has been removed, as it was unmaintained in Nixpkgs and upstream since 2017"; # Added 2025-09-16
libdwarf-lite = throw "`libdwarf-lite` has been replaced by `libdwarf` as it's mostly a mirror"; # Added 2025-06-16
libdynd = throw "'libdynd' has been removed due to lack of maintenance"; # Added 2026-03-24
libertine-g = warnAlias "'libertine-g' has been renamed to 'linux-libertine-g'" linux-libertine-g; # Added 2026-02-20
libevdevplus = throw "'libevdevplus' has been removed, as it was unmaintained upstream since 2021, no longer builds, and is no longer used by anything"; # Added 2025-11-02
libfakeXinerama = warnAlias "'libfakeXinerama' has been renamed to 'libfakexinerama'" libfakexinerama; # Added 2026-02-08