nixpkgs/pkgs/development/libraries/libevdev/default.nix

22 lines
599 B
Nix
Raw Normal View History

2019-12-14 05:10:15 -08:00
{ stdenv, fetchurl, python3 }:
stdenv.mkDerivation rec {
2019-08-29 12:28:01 -07:00
pname = "libevdev";
2020-03-05 00:53:05 -08:00
version = "1.9.0";
src = fetchurl {
2019-08-29 12:28:01 -07:00
url = "https://www.freedesktop.org/software/${pname}/${pname}-${version}.tar.xz";
2020-03-05 00:53:05 -08:00
sha256 = "17pb5375njb1r05xmk0r57a2j986ihglh2n5nqcylbag4rj8mqg7";
};
2020-02-24 16:59:03 -08:00
nativeBuildInputs = [ python3 ];
meta = with stdenv.lib; {
description = "Wrapper library for evdev devices";
2020-03-05 00:53:05 -08:00
homepage = "http://www.freedesktop.org/software/libevdev/doc/latest/index.html";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.amorsillo ];
};
}