python313Packages.virtkey: drop
This commit is contained in:
@@ -1,47 +0,0 @@
|
||||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchurl,
|
||||
pkg-config,
|
||||
gtk2,
|
||||
libX11,
|
||||
libXtst,
|
||||
libXi,
|
||||
libxkbfile,
|
||||
xorgproto,
|
||||
}:
|
||||
|
||||
let
|
||||
majorVersion = "0.63";
|
||||
minorVersion = "0";
|
||||
in
|
||||
buildPythonPackage rec {
|
||||
pname = "virtkey";
|
||||
version = "${majorVersion}.${minorVersion}";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://launchpad.net/virtkey/${majorVersion}/${version}/+download/virtkey-${version}.tar.gz";
|
||||
sha256 = "0hd99hrxn6bh3rxcrdnad5cqjsphrn1s6fzx91q07d44k6cg6qcr";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
buildInputs = [
|
||||
gtk2
|
||||
libX11
|
||||
libXtst
|
||||
libXi
|
||||
libxkbfile
|
||||
xorgproto
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.hostPlatform.isDarwin;
|
||||
description = "Extension to emulate keypresses and to get the layout information from the X server";
|
||||
homepage = "https://launchpad.net/virtkey";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
@@ -2738,6 +2738,7 @@ mapAliases {
|
||||
viper4linux-gui = throw "'viper4linux-gui' was removed as it is broken and not maintained upstream"; # Added 2024-12-16
|
||||
viper4linux = throw "'viper4linux' was removed as it is broken and not maintained upstream"; # Added 2024-12-16
|
||||
virt-manager-qt = throw "'virt-manager-qt' has been dropped as it depends on KDE Gear 5, and is unmaintained"; # Added 2025-08-20
|
||||
virtkey = throw "'virtkey' has been removed, as it was unmaintained, abandoned upstream, and relied on gtk2."; # Added 2025-10-12
|
||||
virtscreen = throw "'virtscreen' has been removed, as it was broken and unmaintained"; # Added 2024-10-17
|
||||
vistafonts = vista-fonts; # Added 2025-02-03
|
||||
vistafonts-chs = vista-fonts-chs; # Added 2025-02-03
|
||||
|
||||
@@ -19819,8 +19819,6 @@ self: super: with self; {
|
||||
|
||||
virt-firmware = callPackage ../development/python-modules/virt-firmware { };
|
||||
|
||||
virtkey = callPackage ../development/python-modules/virtkey { };
|
||||
|
||||
virtual-glob = callPackage ../development/python-modules/virtual-glob { };
|
||||
|
||||
virtualenv = callPackage ../development/python-modules/virtualenv { };
|
||||
|
||||
Reference in New Issue
Block a user