Files
nixpkgs/pkgs/development/python-modules/virtkey/default.nix
phaer 978931902c maintainers: drop abbradar
Listed as maintainer for ~170 packages but last commit that made it to
master was 6786ceb in February 2022.

Unresponsive on PRs, such as i.e. #411522
2025-08-22 09:49:27 +02:00

48 lines
919 B
Nix

{
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 = [ ];
};
}