From 8c3222d8357d5a9cdc4f8b2b7d4f2c4b89fa55a8 Mon Sep 17 00:00:00 2001 From: Klemens Nanni Date: Tue, 14 Jun 2022 14:35:38 +0200 Subject: [PATCH] libdbusmenu_qt: Remove (Qt4 version) This package is unused, unmaintained and uses deprecated Qt4. See #174634. --- .../libraries/libdbusmenu-qt/default.nix | 31 ------------------- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 -- 3 files changed, 1 insertion(+), 33 deletions(-) delete mode 100644 pkgs/development/libraries/libdbusmenu-qt/default.nix diff --git a/pkgs/development/libraries/libdbusmenu-qt/default.nix b/pkgs/development/libraries/libdbusmenu-qt/default.nix deleted file mode 100644 index 75d4f76b31f..00000000000 --- a/pkgs/development/libraries/libdbusmenu-qt/default.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ lib, stdenv, fetchurl, qt4, cmake }: - -let - baseName = "libdbusmenu-qt"; - v = "0.9.2"; - homepage = "https://launchpad.net/${baseName}"; - name = "${baseName}-${v}"; -in - -stdenv.mkDerivation { - inherit name; - - src = fetchurl { - url = "${homepage}/trunk/${v}/+download/${name}.tar.bz2"; - sha256 = "1v0ri5g9xw2z64ik0kx0ra01v8rpjn2kxprrxppkls1wvav1qv5f"; - }; - - buildInputs = [ qt4 ]; - nativeBuildInputs = [ cmake ]; - - cmakeFlags = [ "-DWITH_DOC=OFF" ]; - - dontWrapQtApps = true; - - meta = with lib; { - description = "Provides a Qt implementation of the DBusMenu spec"; - inherit homepage; - inherit (qt4.meta) platforms; - license = licenses.lgpl2; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 7b9c55ee702..4d25e630537 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -690,6 +690,7 @@ mapAliases ({ libco-canonical = throw "libco-canonical: Canonical deleted the repo, libco-canonical is not used anymore"; # Added 2021-05-16 libcroco = throw "libcroco has been removed as it's no longer used in any derivations"; # Added 2020-03-04 libdbusmenu-glib = throw "'libdbusmenu-glib' has been renamed to/replaced by 'libdbusmenu'"; # Converted to throw 2022-02-22 + libdbusmenu_qt = throw "'libdbusmenu_qt' (Qt4) is deprecated and unused, use 'libsForQt5.libdbusmenu'"; # Added 2022-06-14 libdbusmenu_qt5 = throw "'libdbusmenu_qt5' has been renamed to/replaced by 'libsForQt5.libdbusmenu'"; # Converted to throw 2022-02-22 libdigidoc = throw "'libdigidoc' is unused in nixpkgs, deprecated and archived by upstream, use 'libdigidocpp' instead"; # Added 2022-06-03 liberation_ttf_v1_from_source = throw "'liberation_ttf_v1_from_source' has been renamed to/replaced by 'liberation_ttf_v1'"; # Converted to throw 2022-02-22 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ae72b3c5d7b..3a2dcceef0c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18452,8 +18452,6 @@ with pkgs; libdbusmenu-gtk2 = libdbusmenu.override { gtkVersion = "2"; }; libdbusmenu-gtk3 = libdbusmenu.override { gtkVersion = "3"; }; - libdbusmenu_qt = callPackage ../development/libraries/libdbusmenu-qt { }; - libdc1394 = callPackage ../development/libraries/libdc1394 { inherit (darwin.apple_sdk.frameworks) CoreServices; };