nm-tray: drop
This commit is contained in:
@@ -1,50 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
mkDerivation,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
pkg-config,
|
||||
qttools,
|
||||
qtbase,
|
||||
networkmanager-qt,
|
||||
modemmanager-qt,
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "nm-tray";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "palinek";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-JTH1cmkgdW2aRWMYPRvOAvCJz0ClCIpjUtcWcqJQGSU=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
sed -i -e '1i#include <QMetaEnum>' src/nmmodel.cpp
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
qttools
|
||||
];
|
||||
|
||||
cmakeFlags = [ "-DWITH_MODEMMANAGER_SUPPORT=ON" ];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
networkmanager-qt
|
||||
modemmanager-qt
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple Network Manager frontend written in Qt";
|
||||
mainProgram = "nm-tray";
|
||||
homepage = "https://github.com/palinek/nm-tray";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ dtzWill ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
@@ -1717,6 +1717,7 @@ mapAliases {
|
||||
# When the nixops_unstable alias is removed, nixops_unstable_minimal can be renamed to nixops_unstable.
|
||||
|
||||
nixosTest = testers.nixosTest; # Added 2022-05-05
|
||||
nm-tray = throw "'nm-tray' has been removed, as it only works with Plasma 5"; # Added 2025-08-30
|
||||
nmap-unfree = throw "'nmap-unfree' has been renamed to/replaced by 'nmap'"; # Converted to throw 2024-10-17
|
||||
noah = throw "'noah' has been removed because it was broken and its upstream archived"; # Added 2025-05-10
|
||||
nodejs_18 = throw "Node.js 18.x has reached End-Of-Life and has been removed"; # Added 2025-04-23
|
||||
|
||||
@@ -3684,8 +3684,6 @@ with pkgs;
|
||||
|
||||
libnma-gtk4 = libnma.override { withGtk4 = true; };
|
||||
|
||||
nm-tray = libsForQt5.callPackage ../tools/networking/networkmanager/tray.nix { };
|
||||
|
||||
inherit (callPackages ../servers/nextcloud { })
|
||||
nextcloud30
|
||||
nextcloud31
|
||||
|
||||
Reference in New Issue
Block a user