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

21 lines
561 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python }:
stdenv.mkDerivation rec {
2017-11-03 21:09:29 +00:00
name = "libevdev-1.5.7";
src = fetchurl {
2017-03-19 16:12:16 +00:00
url = "https://www.freedesktop.org/software/libevdev/${name}.tar.xz";
2017-11-03 21:09:29 +00:00
sha256 = "08nl3p6226k51zph52fhilxvi3b31spp6fz8szzrglzhl8vrxrd1";
};
buildInputs = [ python ];
meta = with stdenv.lib; {
description = "Wrapper library for evdev devices";
2014-10-19 17:08:42 +00:00
homepage = http://www.freedesktop.org/software/libevdev/doc/latest/index.html;
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.amorsillo ];
};
}