From a91fbe120df3d35cb16d3de469a7421faf274ca8 Mon Sep 17 00:00:00 2001 From: Lena Fuhrimann <6780471+cloudlena@users.noreply.github.com> Date: Sat, 24 May 2025 16:13:58 +0200 Subject: [PATCH] unzoo: drop Dropped since it is unmaintained upstream and doesn't compile with newer versions of GCC anymore. --- pkgs/by-name/un/unzoo/package.nix | 49 ------------------------------- pkgs/top-level/aliases.nix | 1 + 2 files changed, 1 insertion(+), 49 deletions(-) delete mode 100644 pkgs/by-name/un/unzoo/package.nix diff --git a/pkgs/by-name/un/unzoo/package.nix b/pkgs/by-name/un/unzoo/package.nix deleted file mode 100644 index dcb2fe0bbe43..000000000000 --- a/pkgs/by-name/un/unzoo/package.nix +++ /dev/null @@ -1,49 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, -}: - -stdenv.mkDerivation rec { - pname = "unzoo"; - version = "4.4"; - - src = fetchFromGitHub { - owner = "museoa"; - repo = "unzoo"; - rev = version; - hash = "sha256-oPq1I7EsvHaJ7anHbm/KWrYrxJkM79rLhgRfSAdoLtk="; - }; - - outputs = [ - "out" - "doc" - ]; - - buildPhase = '' - runHook preBuild - - ${stdenv.cc.targetPrefix}cc -o unzoo -DSYS_IS_UNIX src/unzoo.c - - runHook postBuild - ''; - - installPhase = '' - runHook preInstall - - mkdir -p $out/bin $doc/share/doc/unzoo - cp unzoo $out/bin - cp README.TXT $doc/share/doc/unzoo - - runHook postInstall - ''; - - meta = with lib; { - homepage = "https://github.com/museoa/unzoo/"; - description = "Manipulate archives of files in Zoo compressed form"; - license = licenses.publicDomain; - maintainers = with maintainers; [ ]; - platforms = platforms.all; - mainProgram = "unzoo"; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 6282093db163..4ceb7b70c8c8 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1945,6 +1945,7 @@ mapAliases { unifiStable = throw "'unifiStable' has been removed since UniFi no longer has LTS and stable releases. Use `pkgs.unifi` instead."; # Converted to throw 2024-04-11 unl0kr = throw "'unl0kr' is now included with buffybox. Use `pkgs.buffybox` instead."; # Removed 2024-12-20 untrunc = throw "'untrunc' has been renamed to/replaced by 'untrunc-anthwlock'"; # Converted to throw 2024-10-17 + unzoo = throw "'unzoo' has been removed since it is unmaintained upstream and doesn't compile with newer versions of GCC anymore"; # Removed 2025-05-24 uq = throw "'uq' has been removed due to lack of upstream maintenance"; # Added 2025-01-25 urxvt_autocomplete_all_the_things = throw "'urxvt_autocomplete_all_the_things' has been renamed to/replaced by 'rxvt-unicode-plugins.autocomplete-all-the-things'"; # Converted to throw 2024-10-17 urxvt_bidi = throw "'urxvt_bidi' has been renamed to/replaced by 'rxvt-unicode-plugins.bidi'"; # Converted to throw 2024-10-17