mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
gnome15: init at 2016-06-10
This commit is contained in:
parent
e1707eec5c
commit
7de8494be6
36
pkgs/applications/misc/gnome15/default.nix
Normal file
36
pkgs/applications/misc/gnome15/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -1882,6 +1882,10 @@ in
|
|||
stdenv = overrideCC stdenv gcc49;
|
||||
};
|
||||
|
||||
gnome15 = callPackage ../applications/misc/gnome15 {
|
||||
inherit (gnome2) gnome_python gnome_python_desktop;
|
||||
};
|
||||
|
||||
gnokii = callPackage ../tools/misc/gnokii { };
|
||||
|
||||
gnuapl = callPackage ../development/interpreters/gnu-apl { };
|
||||
|
|
Loading…
Reference in a new issue