Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

oobicpl: drop

There hasn't been any upstream activity for 15 years.

patka cd2fa921 6bbad3c5

+1 -46
-46
pkgs/by-name/oo/oobicpl/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchFromGitHub, 5 - cmake, 6 - libminc, 7 - bicpl, 8 - arguments, 9 - pcre-cpp, 10 - }: 11 - 12 - stdenv.mkDerivation rec { 13 - pname = "oobicpl"; 14 - version = "unstable-2020-08-12"; 15 - 16 - src = fetchFromGitHub { 17 - owner = "BIC-MNI"; 18 - repo = pname; 19 - rev = "a9409da8a5bb4925438f32aff577b6333faec28b"; 20 - sha256 = "0b4chjhr32wbb1sash8cq1jfnr7rzdq84hif8anlrjqd3l0gw357"; 21 - }; 22 - 23 - nativeBuildInputs = [ cmake ]; 24 - 25 - buildInputs = [ 26 - libminc 27 - bicpl 28 - arguments 29 - pcre-cpp 30 - ]; 31 - 32 - cmakeFlags = [ 33 - "-DLIBMINC_DIR=${libminc}/lib/cmake" 34 - "-DBICPL_DIR=${bicpl}/lib" 35 - "-DARGUMENTS_DIR=${arguments}/lib" 36 - "-DOOBICPL_BUILD_SHARED_LIBS=TRUE" 37 - ]; 38 - 39 - meta = with lib; { 40 - homepage = "https://github.com/BIC-MNI/oobicpl"; 41 - description = "Brain Imaging Centre object-oriented programming library (and tools)"; 42 - maintainers = with maintainers; [ bcdarwin ]; 43 - platforms = platforms.unix; 44 - license = licenses.free; 45 - }; 46 - }
+1
pkgs/top-level/aliases.nix
··· 1341 1341 openjdk22_headless = throw "OpenJDK 22 was removed as it has reached its end of life"; # Added 2024-09-24 1342 1342 jdk22 = throw "OpenJDK 22 was removed as it has reached its end of life"; # Added 2024-09-24 1343 1343 jdk22_headless = throw "OpenJDK 22 was removed as it has reached its end of life"; # Added 2024-09-24 1344 + oobicpl = throw "oobicpl was removed as it is unmaintained upstream"; # Added 2025-04-26 1344 1345 openjfx11 = throw "OpenJFX 11 was removed as it has reached its end of life"; # Added 2024-10-07 1345 1346 openjfx19 = throw "OpenJFX 19 was removed as it has reached its end of life"; # Added 2024-08-01 1346 1347 openjfx20 = throw "OpenJFX 20 was removed as it has reached its end of life"; # Added 2024-08-01