mini-calc: 3.3.3 -> 3.3.5 (#372274)
[NixPkgs.git] / pkgs / by-name / li / libevdev / package.nix
blob5d56ee62fe64d54ac5ca7e42f20e2e182c41beb3
2   lib,
3   stdenv,
4   fetchurl,
5   python3,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "libevdev";
10   version = "1.13.3";
12   src = fetchurl {
13     url = "https://www.freedesktop.org/software/${pname}/${pname}-${version}.tar.xz";
14     hash = "sha256-q/GqzoYgjuvdXTVQ/97UyNc7tAW3ltUcOJydBgTLz78=";
15   };
17   nativeBuildInputs = [ python3 ];
19   meta = with lib; {
20     description = "Wrapper library for evdev devices";
21     homepage = "https://www.freedesktop.org/software/libevdev/doc/latest/index.html";
22     license = licenses.mit;
23     platforms = platforms.linux;
24     maintainers = [ maintainers.amorsillo ];
25   };