2f9c38c056
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. These checks were done: - built on NixOS - ran `/nix/store/sqwg2pbpy19i7vwl45yw966wwh48kg60-libevdev-1.5.9/bin/libevdev-tweak-device -h` got 0 exit code - ran `/nix/store/sqwg2pbpy19i7vwl45yw966wwh48kg60-libevdev-1.5.9/bin/libevdev-tweak-device --help` got 0 exit code - found 1.5.9 with grep in /nix/store/sqwg2pbpy19i7vwl45yw966wwh48kg60-libevdev-1.5.9 - directory tree listing: https://gist.github.com/060e1adaed5f9993a82d48c08503be7c
21 lines
561 B
Nix
21 lines
561 B
Nix
{ stdenv, fetchurl, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libevdev-1.5.9";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.freedesktop.org/software/libevdev/${name}.tar.xz";
|
|
sha256 = "0xca343ff12wh6nsq76r0nbsfrm8dypjrzm4fqz9vv9v8i8kfrp1";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|