Commit 3e14a9b9 authored by Sigmanificient's avatar Sigmanificient
Browse files

python313Packages.virtkey: drop

parent 146d1c3b
Loading
Loading
Loading
Loading
+0 −47
Original line number Diff line number Diff line
{
  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 = [ ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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 { };