quickbms: drop (#407888)

authored by

K900 and committed by
GitHub
f4455978 6de61eeb

+1 -50
-48
pkgs/tools/archivers/quickbms/default.nix
··· 1 - { 2 - stdenv, 3 - lib, 4 - fetchzip, 5 - fetchpatch, 6 - bzip2, 7 - lzo, 8 - openssl_1_1, 9 - opensslSupport ? false, 10 - zlib, 11 - }: 12 - 13 - stdenv.mkDerivation rec { 14 - version = "0.11.0"; 15 - pname = "quickbms"; 16 - 17 - src = fetchzip { 18 - url = "https://aluigi.altervista.org/papers/quickbms-src-${version}.zip"; 19 - hash = "sha256-uQKTE36pLO8uhrX794utqaDGUeyqRz6zLCQFA7DYkNc="; 20 - }; 21 - 22 - patches = [ 23 - # Fix errors on x86_64 and _rotl definition 24 - (fetchpatch { 25 - name = "0001-fix-compile.patch"; 26 - url = "https://aur.archlinux.org/cgit/aur.git/plain/fix-compile.patch?h=quickbms&id=a2e3e4638295d7cfe39513bfef9447fb23154a6b"; 27 - hash = "sha256-49fT/L4BNzMYnq1SXhFMgSDLybLkz6KSbgKmUpZZu08="; 28 - stripLen = 1; 29 - }) 30 - ] ++ lib.optional (!opensslSupport) ./0002-disable-openssl.patch; 31 - 32 - buildInputs = [ 33 - bzip2 34 - lzo 35 - zlib 36 - ] ++ lib.optional (opensslSupport) openssl_1_1; 37 - 38 - makeFlags = [ "PREFIX=$(out)" ]; 39 - 40 - meta = with lib; { 41 - description = "Universal script based file extractor and reimporter"; 42 - homepage = "https://aluigi.altervista.org/quickbms.htm"; 43 - license = licenses.gpl2Plus; 44 - maintainers = [ ]; 45 - platforms = platforms.linux; 46 - mainProgram = "quickbms"; 47 - }; 48 - }
+1
pkgs/top-level/aliases.nix
··· 1593 1593 qtcurve = throw "'qtcurve' has been renamed to/replaced by 'libsForQt5.qtcurve'"; # Converted to throw 2024-10-17 1594 1594 qtile-unwrapped = python3.pkgs.qtile; # Added 2023-05-12 1595 1595 quantum-espresso-mpi = quantum-espresso; # Added 2023-11-23 1596 + quickbms = throw "'quickbms' has been removed due to being unmaintained for many years."; # Added 2025-05-17 1596 1597 quicklispPackages = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 1597 1598 quicklispPackagesABCL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 1598 1599 quicklispPackagesCCL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
-2
pkgs/top-level/all-packages.nix
··· 4283 4283 4284 4284 qlcplus = libsForQt5.callPackage ../applications/misc/qlcplus { }; 4285 4285 4286 - quickbms = pkgsi686Linux.callPackage ../tools/archivers/quickbms { }; 4287 - 4288 4286 qdigidoc = libsForQt5.callPackage ../tools/security/qdigidoc { }; 4289 4287 4290 4288 qjournalctl = libsForQt5.callPackage ../applications/system/qjournalctl { };