mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
fb0d99696e
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/s03fn5nf1d4bxiwnjngz4fa8qbxxak2d-libevdev-1.5.8/bin/libevdev-tweak-device -h` got 0 exit code - ran `/nix/store/s03fn5nf1d4bxiwnjngz4fa8qbxxak2d-libevdev-1.5.8/bin/libevdev-tweak-device --help` got 0 exit code - found 1.5.8 with grep in /nix/store/s03fn5nf1d4bxiwnjngz4fa8qbxxak2d-libevdev-1.5.8 - found 1.5.8 in filename of file in /nix/store/s03fn5nf1d4bxiwnjngz4fa8qbxxak2d-libevdev-1.5.8 cc "@amorsillo"
21 lines
561 B
Nix
21 lines
561 B
Nix
{ stdenv, fetchurl, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libevdev-1.5.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.freedesktop.org/software/libevdev/${name}.tar.xz";
|
|
sha256 = "0vac7n1miqdprikq4g63vsk681q8v416r0nbh2xai7b08qgdi0v0";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|