2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, meson, ninja, glib, pkg-config, udev, libgudev, doxygen }:
|
2014-01-19 22:14:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libwacom";
|
2021-02-25 12:19:51 +00:00
|
|
|
version = "1.9";
|
2019-09-20 15:30:30 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
2014-01-19 22:14:11 +00:00
|
|
|
|
2018-10-15 06:37:16 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linuxwacom";
|
|
|
|
repo = "libwacom";
|
|
|
|
rev = "libwacom-${version}";
|
2021-02-25 12:19:51 +00:00
|
|
|
sha256 = "sha256-o1xCSrWKPzz1GePEVB1jgx2cGzRtw0I6c4wful08Vx4=";
|
2014-01-19 22:14:11 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config meson ninja doxygen ];
|
2019-09-20 15:30:30 +00:00
|
|
|
|
2020-04-12 04:50:36 +00:00
|
|
|
mesonFlags = [ "-Dtests=disabled" ];
|
2019-09-20 15:30:30 +00:00
|
|
|
|
2016-05-23 13:26:30 +00:00
|
|
|
buildInputs = [ glib udev libgudev ];
|
2014-01-19 22:14:11 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2014-01-19 22:14:11 +00:00
|
|
|
platforms = platforms.linux;
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://linuxwacom.github.io/";
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
|
2020-04-14 12:55:10 +00:00
|
|
|
maintainers = teams.freedesktop.members;
|
2018-10-11 12:30:46 +00:00
|
|
|
license = licenses.mit;
|
2014-01-19 22:14:11 +00:00
|
|
|
};
|
|
|
|
}
|