pythonPackages.virtkey: init at 0.63

This commit is contained in:
Nikolay Amiantov 2016-12-21 00:35:36 +03:00
parent 4d26238690
commit ecf4e223f4

View File

@ -26179,6 +26179,32 @@ in {
};
};
virtkey = buildPythonPackage rec {
name = "virtkey-${version}";
majorVersion = "0.63";
version = "${majorVersion}.0";
src = pkgs.fetchurl {
url = "https://launchpad.net/virtkey/${majorVersion}/${version}/+download/virtkey-${version}.tar.gz";
sha256 = "0hd99hrxn6bh3rxcrdnad5cqjsphrn1s6fzx91q07d44k6cg6qcr";
};
nativeBuildInputs = [ pkgs.pkgconfig ];
buildInputs =
[ pkgs.gtk2 ]
++ (with pkgs.xorg; [ libX11 libXtst libXi libxkbfile xextproto xproto ]);
meta = {
description = "Extension to emulate keypresses and to get the layout information from the X server";
homepage = "https://launchpad.net/virtkey";
license = licenses.gpl3;
maintainers = with maintainers; [ abbradar ];
};
};
virtual-display = buildPythonPackage rec {
name = "PyVirtualDisplay-0.1.5";