29 lines
814 B
Nix
29 lines
814 B
Nix
{ stdenv, fetchurl, buildPythonApplication, gnome, librsvg, pygtk, pythonPackages }:
|
|
|
|
buildPythonApplication rec {
|
|
name = "key-mon-${version}";
|
|
version = "1.17";
|
|
namePrefix = "";
|
|
|
|
src = fetchurl {
|
|
url = "http://key-mon.googlecode.com/files/${name}.tar.gz";
|
|
sha256 = "1liz0dxcqmchbnl1xhlxkqm3gh76wz9jxdxn9pa7dy77fnrjkl5q";
|
|
};
|
|
|
|
propagatedBuildInputs =
|
|
[ gnome.python_rsvg librsvg pygtk pythonPackages.xlib ];
|
|
|
|
doCheck = false;
|
|
|
|
preFixup = ''
|
|
export makeWrapperArgs="--set GDK_PIXBUF_MODULE_FILE $GDK_PIXBUF_MODULE_FILE"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://code.google.com/p/key-mon;
|
|
description = "Utility to show live keyboard and mouse status for teaching and screencasts";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|