iv: drop (#399622)

authored by Aleksana and committed by GitHub 9fa9c157 f61d4c96

+1 -50
-46
pkgs/applications/science/biology/iv/default.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchurl, 5 - neuron-version, 6 - libX11, 7 - libXext, 8 - patchelf, 9 - }: 10 - 11 - stdenv.mkDerivation rec { 12 - pname = "iv"; 13 - version = "19"; 14 - 15 - src = fetchurl { 16 - url = "https://www.neuron.yale.edu/ftp/neuron/versions/v${neuron-version}/iv-${version}.tar.gz"; 17 - sha256 = "07a3g8zzay4h0bls7fh89dd0phn7s34c2g15pij6dsnwpmjg06yx"; 18 - }; 19 - 20 - nativeBuildInputs = [ patchelf ]; 21 - buildInputs = [ libXext ]; 22 - propagatedBuildInputs = [ libX11 ]; 23 - 24 - hardeningDisable = [ "format" ]; 25 - 26 - postInstall = 27 - '' 28 - for dir in $out/*; do # */ 29 - if [ -d $dir/lib ]; then 30 - mv $dir/* $out # */ 31 - rmdir $dir 32 - break 33 - fi 34 - done 35 - '' 36 - + lib.optionalString stdenv.hostPlatform.isLinux '' 37 - patchelf --add-needed ${libX11}/lib/libX11.so $out/lib/libIVhines.so 38 - ''; 39 - 40 - meta = with lib; { 41 - description = "InterViews graphical library for Neuron"; 42 - license = licenses.bsd3; 43 - homepage = "http://www.neuron.yale.edu/neuron"; 44 - platforms = platforms.all; 45 - }; 46 - }
+1
pkgs/top-level/aliases.nix
··· 852 852 isl_0_17 = throw "isl_0_17 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-11-20 853 853 iso-flags-png-320x420 = lib.warnOnInstantiate "iso-flags-png-320x420 has been renamed to iso-flags-png-320x240" iso-flags-png-320x240; # Added 2024-07-17 854 854 itktcl = tclPackages.itktcl; # Added 2024-10-02 855 + iv = throw "iv has been removed as it was no longer required for neuron and broken"; # Added 2025-04-18 855 856 ix = throw "ix has been removed from Nixpkgs, as the ix.io pastebin has been offline since Dec. 2023"; # Added 2025-04-11 856 857 857 858 ### J ###
-4
pkgs/top-level/all-packages.nix
··· 17963 17963 inherit (llvmPackages) openmp; 17964 17964 }; 17965 17965 17966 - iv = callPackage ../applications/science/biology/iv { 17967 - neuron-version = neuron.version; 17968 - }; 17969 - 17970 17966 kallisto = callPackage ../applications/science/biology/kallisto { 17971 17967 autoconf = buildPackages.autoconf269; 17972 17968 };