nixpkgs/pkgs/development/libraries/libevdev/default.nix
R. RyanTM a7e2c580bf libevdev: 1.5.9 -> 1.6.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libevdev/versions
2018-11-09 12:49:26 -08:00

21 lines
561 B
Nix

{ stdenv, fetchurl, python }:
stdenv.mkDerivation rec {
name = "libevdev-1.6.0";
src = fetchurl {
url = "https://www.freedesktop.org/software/libevdev/${name}.tar.xz";
sha256 = "057qdrwbhql2lvr4kxljk3yqjsmh65hyrfbr2b681nc7b635q07m";
};
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 ];
};
}