libsmartcols: drop in favor of util-linux

The libsmartcols package can be replaced by the util-linux
package which is properly kept updated.
This commit is contained in:
Thomas Gerbet
2025-09-03 22:24:24 +02:00
parent f79c7f1f57
commit 2e50564212
2 changed files with 1 additions and 50 deletions
-50
View File
@@ -1,50 +0,0 @@
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
pkg-config,
python3,
gtk-doc,
}:
stdenv.mkDerivation rec {
pname = "libsmartcols";
version = "2.39.3";
nativeBuildInputs = [
autoreconfHook
pkg-config
python3
gtk-doc
];
src = fetchFromGitHub {
owner = "karelzak";
repo = "util-linux";
rev = "v${version}";
sha256 = "sha256-X39os2iHqSrrYP6HVHPOkuTfc6vNB3pmsOP3VjW50fI=";
};
configureFlags = [
"--disable-all-programs"
"--enable-libsmartcols"
];
buildPhase = ''
make libsmartcols.la
'';
installTargets = [
"install-am"
"install-pkgconfigDATA"
];
meta = {
description = "Smart column output alignment library";
homepage = "https://github.com/karelzak/util-linux/tree/master/libsmartcols";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = with lib.maintainers; [ rb2k ];
};
}
+1
View File
@@ -1339,6 +1339,7 @@ mapAliases {
librewolf-wayland = librewolf; # Added 2022-11-15
libseat = throw "'libseat' has been renamed to/replaced by 'seatd'"; # Converted to throw 2024-10-17
libsForQt515 = libsForQt5; # Added 2022-11-24
libsmartcols = lib.warnOnInstantiate "'util-linux' should be used instead of 'libsmartcols'" util-linux; # Added 2025-09-03
libsoup = lib.warnOnInstantiate "libsoup has been renamed to libsoup_2_4" libsoup_2_4; # Added 2024-12-02
libstdcxx5 = throw "libstdcxx5 is severly outdated and has been removed"; # Added 2024-11-24
libtensorflow-bin = libtensorflow; # Added 2022-09-25