aliza: remove

ajs124 fd9213cf 141579b8

+1 -62
-60
pkgs/applications/science/medicine/aliza/default.nix
··· 1 - { lib, stdenv, fetchurl, rpmextract, makeWrapper, patchelf, qt4, zlib, libX11, libXt, libSM, libICE, libXext, libGLU, libGL }: 2 - 3 - with lib; 4 - stdenv.mkDerivation { 5 - pname = "aliza"; 6 - version = "1.98.57"; 7 - src = fetchurl { 8 - # See https://www.aliza-dicom-viewer.com/download 9 - urls = [ 10 - "https://drive.google.com/uc?export=download&id=1-AXa3tjy_onecW2k7ftjAQl0KGTb0B1Y" 11 - "https://web.archive.org/web/20210327224315/https://doc-0s-0s-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/1lgjid9ti29rdf5ebmd7o58iqhs3gfpo/1616884950000/16072287944266838401/*/1-AXa3tjy_onecW2k7ftjAQl0KGTb0B1Y?e=download" 12 - ]; 13 - sha256 = "01qk2gadmc24pmfdnmpiz7vgfiqkvhznyq9rsr153frscg76gc9b"; 14 - name = "aliza.rpm"; 15 - }; 16 - 17 - nativeBuildInputs = [ makeWrapper rpmextract ]; 18 - 19 - unpackCmd = "rpmextract $curSrc"; 20 - 21 - postPatch = '' 22 - sed -i 's/^Exec.*$/Exec=aliza %F/' share/applications/aliza.desktop 23 - ''; 24 - 25 - installPhase = '' 26 - runHook preInstall 27 - 28 - mkdir -p $out 29 - cp -r bin share $out 30 - 31 - runHook postInstall 32 - ''; 33 - 34 - postInstall = let 35 - libs = lib.makeLibraryPath [ qt4 zlib stdenv.cc.cc libSM libICE libX11 libXext libXt libGLU libGL ]; 36 - in '' 37 - ${patchelf}/bin/patchelf \ 38 - --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 39 - $out/bin/aliza 40 - 41 - ${patchelf}/bin/patchelf \ 42 - --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 43 - $out/bin/aliza-vtkvol 44 - 45 - wrapProgram $out/bin/aliza \ 46 - --prefix LD_LIBRARY_PATH : ${libs} 47 - 48 - wrapProgram $out/bin/aliza-vtkvol \ 49 - --prefix LD_LIBRARY_PATH : ${libs} 50 - ''; 51 - 52 - meta = { 53 - description = "Medical imaging software with 2D, 3D and 4D capabilities"; 54 - homepage = "https://www.aliza-dicom-viewer.com"; 55 - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 56 - license = licenses.unfreeRedistributable; 57 - maintainers = with maintainers; [ mounium ]; 58 - platforms = platforms.linux; 59 - }; 60 - }
···
+1
pkgs/top-level/aliases.nix
··· 69 airfield = throw "airfield has been removed due to being unmaintained"; # Added 2023-05-19 70 airtame = throw "airtame has been removed due to being unmaintained"; # Added 2022-01-19 71 aleth = throw "aleth (previously packaged as cpp_ethereum) has been removed; abandoned upstream"; # Added 2020-11-30 72 alsaLib = alsa-lib; # Added 2021-06-09 73 alsaOss = alsa-oss; # Added 2021-06-10 74 alsaPluginWrapper = alsa-plugins-wrapper; # Added 2021-06-10
··· 69 airfield = throw "airfield has been removed due to being unmaintained"; # Added 2023-05-19 70 airtame = throw "airtame has been removed due to being unmaintained"; # Added 2022-01-19 71 aleth = throw "aleth (previously packaged as cpp_ethereum) has been removed; abandoned upstream"; # Added 2020-11-30 72 + aliza = throw "aliza has been removed, because it depended on qt4 and was unmaintained in nixpkgs"; # Added 2022-05-12 73 alsaLib = alsa-lib; # Added 2021-06-09 74 alsaOss = alsa-oss; # Added 2021-06-10 75 alsaPluginWrapper = alsa-plugins-wrapper; # Added 2021-06-10
-2
pkgs/top-level/all-packages.nix
··· 39563 39564 ### SCIENCE/MEDICINE 39565 39566 - aliza = callPackage ../applications/science/medicine/aliza { }; 39567 - 39568 dcmtk = callPackage ../applications/science/medicine/dcmtk { }; 39569 39570 xmedcon = callPackage ../applications/science/medicine/xmedcon { };
··· 39563 39564 ### SCIENCE/MEDICINE 39565 39566 dcmtk = callPackage ../applications/science/medicine/dcmtk { }; 39567 39568 xmedcon = callPackage ../applications/science/medicine/xmedcon { };