mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
e30f48be94
Using the script in maintainers/scripts/update-redirected-urls.sh
22 lines
610 B
Nix
22 lines
610 B
Nix
{ lib, stdenv, fetchurl, fetchpatch, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libevdev";
|
|
version = "1.13.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.freedesktop.org/software/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-Bqd78qxcmTMFiCvBZBAX9b7BWS1tG2R4e61JKrNPLzY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ python3 ];
|
|
|
|
meta = with lib; {
|
|
description = "Wrapper library for evdev devices";
|
|
homepage = "https://www.freedesktop.org/software/libevdev/doc/latest/index.html";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.amorsillo ];
|
|
};
|
|
}
|