centerim: drop (#399608)

authored by Aleksana and committed by GitHub f61d4c96 f17556fc

+1 -46
-46
pkgs/by-name/ce/centerim/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchurl, 5 - gnused, 6 - openssl, 7 - curl, 8 - ncurses, 9 - libjpeg, 10 - withGpg ? true, 11 - gpgme ? null, 12 - }: 13 - 14 - stdenv.mkDerivation rec { 15 - version = "5.0.1"; 16 - pname = "centerim5"; 17 - 18 - src = fetchurl { 19 - url = "http://centerim.org/download/cim5/${pname}-${version}.tar.gz"; 20 - sha256 = "0viz86jflp684vfginhl6aaw4gh2qvalc25anlwljjl3kkmibklk"; 21 - }; 22 - 23 - CXXFLAGS = "-std=gnu++98"; 24 - 25 - buildInputs = [ 26 - openssl 27 - curl 28 - ncurses 29 - libjpeg 30 - ] ++ lib.optional withGpg gpgme; 31 - 32 - preConfigure = '' 33 - ${gnused}/bin/sed -i '1,1i#include <stdio.h>' libicq2000/libicq2000/sigslot.h 34 - ''; 35 - 36 - configureFlags = [ 37 - "--with-openssl=${openssl.dev}" 38 - ]; 39 - 40 - meta = { 41 - homepage = "https://www.centerim.org/"; 42 - description = "Fork of CenterICQ, a curses instant messaging program"; 43 - license = lib.licenses.gpl2Plus; 44 - platforms = with lib.platforms; linux; 45 - }; 46 - }
+1
pkgs/top-level/aliases.nix
··· 392 392 cargo-inspect = throw "'cargo-inspect' has been removed due to lack of upstream maintenance. Upstream recommends cargo-expand."; # Added 2025-01-26 393 393 cargo-web = throw "'cargo-web' has been removed due to lack of upstream maintenance"; # Added 2025-01-26 394 394 cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API"; 395 + centerim = throw "centerim has been removed due to upstream disappearing"; # Added 2025-04-18 395 396 certmgr-selfsigned = certmgr; # Added 2023-11-30 396 397 cgal_4 = throw "cgal_4 has been removed as it is obsolete use cgal instead"; # Added 2024-12-30 397 398 cgal_5 = cgal; # Added 2024-12-30