clipbuzz: drop

This commit is contained in:
Emily 2025-08-09 21:27:38 +01:00
parent 3cca2c60f7
commit 70c8c6bdbd
3 changed files with 1 additions and 37 deletions

View File

@ -1,33 +0,0 @@
{
lib,
stdenv,
fetchzip,
libX11,
libXfixes,
zig,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "clipbuzz";
version = "2.0.1";
src = fetchzip {
url = "https://trong.loang.net/~cnx/clipbuzz/snapshot/clipbuzz-${finalAttrs.version}.tar.gz";
hash = "sha256-2//IwthAjGyVSZaXjgpM1pUJGYWZVkrJ6JyrVbzOtr8=";
};
nativeBuildInputs = [ zig.hook ];
buildInputs = [
libX11
libXfixes
];
meta = {
description = "Buzz on new X11 clipboard events";
homepage = "https://trong.loang.net/~cnx/clipbuzz";
license = lib.licenses.unlicense;
maintainers = [ lib.maintainers.McSinyx ];
mainProgram = "clipbuzz";
};
})

View File

@ -457,6 +457,7 @@ mapAliases {
clang-sierraHack = throw "clang-sierraHack has been removed because it solves a problem that no longer seems to exist. Hey, what were you even doing with that thing anyway?"; # Added 2024-10-05
clang-sierraHack-stdenv = clang-sierraHack; # Added 2024-10-05
cli-visualizer = throw "'cli-visualizer' has been removed as the upstream repository is gone"; # Added 2025-06-05
clipbuzz = throw "clipbuzz has been removed, as it does not build with supported Zig versions"; # Added 2025-08-09
inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17
cloudlogoffline = throw "cloudlogoffline has been removed"; # added 2025-05-18
clwrapperFunction = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07

View File

@ -4580,10 +4580,6 @@ with pkgs;
ocamlPackages = ocaml-ng.ocamlPackages_4_14;
};
clipbuzz = callPackage ../tools/misc/clipbuzz {
zig = buildPackages.zig_0_12;
};
# A minimal xar is needed to break an infinite recursion between macfuse-stubs and xar.
# It is also needed to reduce the amount of unnecessary stuff in the Darwin bootstrap.
xarMinimal = callPackage ../by-name/xa/xar/package.nix { e2fsprogs = null; };