mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
Add evemu tool to emulate and record input device event data
[Bjørn Forsman: * wrap some long lines * tweak meta attrs (don't repeat package name, s/meta.maintainer/meta.maintainers/) * provide a version number (v2.0) for 'evemu' (for nix-env) ]
This commit is contained in:
parent
4597903ce9
commit
0f8df0b6f2
20
pkgs/development/libraries/libevdev/default.nix
Normal file
20
pkgs/development/libraries/libevdev/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, fetchurl, python }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libevdev-1.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.freedesktop.org/software/libevdev/${name}.tar.xz";
|
||||
sha256 = "0h54ym5rsmicl4gx7gcdaifpyndakbl38c5dcxgr27f0cy0635a1";
|
||||
};
|
||||
|
||||
buildInputs = [ python ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Wrapper library for evdev devices";
|
||||
homepage = http://www.freedesktop.org/software/libevdev/doc/latest/index.html;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.amorsillo ];
|
||||
};
|
||||
}
|
37
pkgs/tools/system/evemu/default.nix
Normal file
37
pkgs/tools/system/evemu/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ stdenv, fetchgit, automake, autoconf, libtool, pkgconfig, pythonPackages
|
||||
, libevdev, linuxHeaders
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "evemu-${version}";
|
||||
version = "2.0.0";
|
||||
|
||||
# We could have downloaded a release tarball from cgit, but it changes hash
|
||||
# each time it is downloaded :/
|
||||
src = fetchgit {
|
||||
url = git://git.freedesktop.org/git/evemu;
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "1509b524a2483054a45698c485968094dd8c0f857bba7333449e9d05acbfbd2c";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
automake autoconf libtool pkgconfig pythonPackages.python
|
||||
pythonPackages.evdev libevdev
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
./autogen.sh --prefix=$out
|
||||
'';
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace src/make-event-names.py --replace "/usr/include/linux/input.h" "${linuxHeaders}/include/linux/input.h"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Records and replays device descriptions and events to emulate input devices through the kernel's input system";
|
||||
homepage = http://www.freedesktop.org/wiki/Evemu/;
|
||||
repositories.git = git://git.freedesktop.org/git/evemu;
|
||||
license = licenses.gpl2;
|
||||
maintainer = [ maintainers.amorsillo ];
|
||||
};
|
||||
}
|
@ -950,6 +950,8 @@ let
|
||||
|
||||
efivar = callPackage ../tools/system/efivar { };
|
||||
|
||||
evemu = callPackage ../tools/system/evemu { };
|
||||
|
||||
elasticsearch = callPackage ../servers/search/elasticsearch { };
|
||||
|
||||
enblendenfuse = callPackage ../tools/graphics/enblend-enfuse {
|
||||
@ -1403,6 +1405,8 @@ let
|
||||
|
||||
libestr = callPackage ../development/libraries/libestr { };
|
||||
|
||||
libevdev = callPackage ../development/libraries/libevdev { };
|
||||
|
||||
liboauth = callPackage ../development/libraries/liboauth { };
|
||||
|
||||
libtirpc = callPackage ../development/libraries/ti-rpc { };
|
||||
|
Loading…
Reference in New Issue
Block a user