summary refs log tree commit diff
path: root/pkgs/applications/misc/gnome15
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-12-21 00:37:42 +0300
committerNikolay Amiantov <ab@fmap.me>2016-12-22 01:35:11 +0300
commit7de8494be6768fedbcc921eb4da7256f2f81f3e2 (patch)
tree6a2e29f4bff12e0e0b140c90fb3740a063ac6a94 /pkgs/applications/misc/gnome15
parente1707eec5ccb0e39fb38a37c1a21e24b22982a4a (diff)
downloadnixlib-7de8494be6768fedbcc921eb4da7256f2f81f3e2.tar
nixlib-7de8494be6768fedbcc921eb4da7256f2f81f3e2.tar.gz
nixlib-7de8494be6768fedbcc921eb4da7256f2f81f3e2.tar.bz2
nixlib-7de8494be6768fedbcc921eb4da7256f2f81f3e2.tar.lz
nixlib-7de8494be6768fedbcc921eb4da7256f2f81f3e2.tar.xz
nixlib-7de8494be6768fedbcc921eb4da7256f2f81f3e2.tar.zst
nixlib-7de8494be6768fedbcc921eb4da7256f2f81f3e2.zip
gnome15: init at 2016-06-10
Diffstat (limited to 'pkgs/applications/misc/gnome15')
-rw-r--r--pkgs/applications/misc/gnome15/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/applications/misc/gnome15/default.nix b/pkgs/applications/misc/gnome15/default.nix
new file mode 100644
index 000000000000..c4f8be88bb51
--- /dev/null
+++ b/pkgs/applications/misc/gnome15/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, python2, gnome_python, gnome_python_desktop }:
+
+stdenv.mkDerivation rec {
+  name = "gnome15-2016-06-10";
+
+  src = fetchFromGitHub {
+    owner = "achilleas-k";
+    repo = "gnome15";
+    rev = "1077c890d9ba8ef7a5e448e70a792de5c7443c84";
+    sha256 = "0z5k2rgvv5zyi3lbbk6svncypidj44qzfchivb4vlr7clmh16m95";
+  };
+
+  nativeBuildInputs = [ autoreconfHook pkgconfig python2.pkgs.wrapPython ];
+  buildInputs = [ python2 ];
+  propagatedBuildInputs = with python2.pkgs; [
+    pygtk keyring virtkey pillow dbus-python pyinotify lxml pyxdg pyusb gnome_python gnome_python_desktop
+    python-uinput xlib pyudev pyinputevent
+  ];
+
+  postPatch = ''
+    touch README
+    export UDEV_RULES_PATH="$out/lib/udev/rules.d"
+  '';
+
+  postFixup = ''
+    wrapPythonPrograms
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A set of tools for configuring the Logitech G15 keyboard";
+    license = licenses.gpl3;
+    homepage = "https://gnome15.org/";
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ abbradar ];
+  };
+}