summary refs log tree commit diff
path: root/pkgs/applications/video/key-mon/default.nix
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2019-12-15 23:57:17 +0000
committerAlyssa Ross <hi@alyssa.is>2019-12-15 23:57:17 +0000
commit6e6ec8b0c230c842ef853951cf51fa80a9382c5c (patch)
treec2f31552b39b1f9004cf727fa405b97c7506282e /pkgs/applications/video/key-mon/default.nix
parente56df97ba1341ba7a329c3e90b1c12572315c943 (diff)
parenta991de49f2aa3ab8716c73f6bfba722df23a3b50 (diff)
downloadnixpkgs-6e6ec8b0c230c842ef853951cf51fa80a9382c5c.tar
nixpkgs-6e6ec8b0c230c842ef853951cf51fa80a9382c5c.tar.gz
nixpkgs-6e6ec8b0c230c842ef853951cf51fa80a9382c5c.tar.bz2
nixpkgs-6e6ec8b0c230c842ef853951cf51fa80a9382c5c.tar.lz
nixpkgs-6e6ec8b0c230c842ef853951cf51fa80a9382c5c.tar.xz
nixpkgs-6e6ec8b0c230c842ef853951cf51fa80a9382c5c.tar.zst
nixpkgs-6e6ec8b0c230c842ef853951cf51fa80a9382c5c.zip
Merge remote-tracking branch 'nixpkgs/master' into master
Diffstat (limited to 'pkgs/applications/video/key-mon/default.nix')
-rw-r--r--pkgs/applications/video/key-mon/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/applications/video/key-mon/default.nix b/pkgs/applications/video/key-mon/default.nix
deleted file mode 100644
index 7dc350da647..00000000000
--- a/pkgs/applications/video/key-mon/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ stdenv, fetchurl, gnome2, librsvg, pythonPackages }:
-
-pythonPackages.buildPythonApplication rec {
-  pname = "key-mon";
-  version = "1.17";
-  namePrefix = "";
-
-  src = fetchurl {
-    url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/key-mon/${pname}-${version}.tar.gz";
-    sha256 = "1liz0dxcqmchbnl1xhlxkqm3gh76wz9jxdxn9pa7dy77fnrjkl5q";
-  };
-
-  propagatedBuildInputs =
-    [ gnome2.python_rsvg librsvg pythonPackages.pygtk pythonPackages.xlib ];
-
-  doCheck = false;
-
-  preFixup = ''
-      export makeWrapperArgs="--set GDK_PIXBUF_MODULE_FILE $GDK_PIXBUF_MODULE_FILE"
-  '';
-
-  meta = with stdenv.lib; {
-    homepage = https://code.google.com/archive/p/key-mon;
-    description = "Utility to show live keyboard and mouse status for teaching and screencasts";
-    license = licenses.asl20;
-    maintainers = [ maintainers.goibhniu ];
-  };
-}