at 18.03-beta 561 B view raw
1{ stdenv, fetchurl, python }: 2 3stdenv.mkDerivation rec { 4 name = "libevdev-1.5.7"; 5 6 src = fetchurl { 7 url = "https://www.freedesktop.org/software/libevdev/${name}.tar.xz"; 8 sha256 = "08nl3p6226k51zph52fhilxvi3b31spp6fz8szzrglzhl8vrxrd1"; 9 }; 10 11 buildInputs = [ python ]; 12 13 meta = with stdenv.lib; { 14 description = "Wrapper library for evdev devices"; 15 homepage = http://www.freedesktop.org/software/libevdev/doc/latest/index.html; 16 license = licenses.mit; 17 platforms = platforms.linux; 18 maintainers = [ maintainers.amorsillo ]; 19 }; 20}