From 375cf7bc50fcab9ebad0973a126f03ddb3209c2e Mon Sep 17 00:00:00 2001 From: Ingo Reitz <9l@9lo.re> Date: Sat, 16 May 2026 17:11:55 +0200 Subject: [PATCH] clipit: drop --- pkgs/by-name/cl/clipit/package.nix | 78 ------------------------------ pkgs/top-level/aliases.nix | 1 + 2 files changed, 1 insertion(+), 78 deletions(-) delete mode 100644 pkgs/by-name/cl/clipit/package.nix diff --git a/pkgs/by-name/cl/clipit/package.nix b/pkgs/by-name/cl/clipit/package.nix deleted file mode 100644 index d4e8b3f380c5..000000000000 --- a/pkgs/by-name/cl/clipit/package.nix +++ /dev/null @@ -1,78 +0,0 @@ -{ - fetchFromGitHub, - fetchpatch, - lib, - stdenv, - autoreconfHook, - intltool, - pkg-config, - gtk3, - libayatana-appindicator, - xdotool, - which, - wrapGAppsHook3, -}: - -stdenv.mkDerivation (finalAttrs: { - pname = "clipit"; - version = "1.4.5"; - - src = fetchFromGitHub { - owner = "CristianHenzel"; - repo = "ClipIt"; - rev = "45e2ea386d04dbfc411ea370299502450d589d0c"; - sha256 = "0byqz9hanwmdc7i55xszdby2iqrk93lws7hmjda2kv17g34apwl7"; - }; - - preConfigure = '' - intltoolize --copy --force --automake - ''; - - patches = [ - # Fixes for GCC14 - (fetchpatch { - url = "https://salsa.debian.org/debian/clipit/-/raw/d4bafc28fcb445d1940cdfede6c70142cf3162f5/debian/patches/incompatible-pointer-types.patch"; - hash = "sha256-STI1fpnoPdEqu1embQcUlTG712HPbJ+LPm930P13Ixo="; - }) - (fetchpatch { - url = "https://salsa.debian.org/debian/clipit/-/raw/656d0814030c13437b10d40ee75615d0e8cd873e/debian/patches/missing-prototypes.patch"; - hash = "sha256-UD183IjV5BprPHQK9bhmUBKfUYgqEZ9M1cRE+AmhAPA="; - }) - ]; - - nativeBuildInputs = [ - pkg-config - wrapGAppsHook3 - autoreconfHook - intltool - ]; - - configureFlags = [ - "--with-gtk3" - "--enable-appindicator=yes" - ]; - - buildInputs = [ - gtk3 - libayatana-appindicator - ]; - - gappsWrapperArgs = [ - "--prefix" - "PATH" - ":" - "${lib.makeBinPath [ - xdotool - which - ]}" - ]; - - meta = { - description = "Lightweight GTK Clipboard Manager"; - inherit (finalAttrs.src.meta) homepage; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - mainProgram = "clipit"; - maintainers = with lib.maintainers; [ kamilchm ]; - }; -}) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 0371a18b49de..9c5ded5a72e3 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -515,6 +515,7 @@ mapAliases { clima = throw "'clima' has been removed, as it has been unmaintained upstream since December 2024, use glow instead"; # Added 2026-01-01 clipbuzz = throw "clipbuzz has been removed, as it does not build with supported Zig versions"; # Added 2025-08-09 clipgrab = throw "'clipgrab' has been removed, as it was unmaintained in nixpkgs since 2022 and depended on vulnerable qt5 webengine."; # Added 2026-02-11 + clipit = throw "'clipit' has been removed as it is unmaintained upstream and broken"; # Added 2026-05-16 cloudlogoffline = throw "cloudlogoffline has been removed"; # Added 2025-05-18 clucene_core = warnAlias "'clucene_core' has been renamed to 'clucene-core'" clucene-core; # Added 2026-01-12 clucene_core_2 = warnAlias "'clucene_core_2' has been renamed to 'clucene-core_2'" clucene-core_2; # Added 2026-01-12