2015-09-08 18:22:27 +00:00
|
|
|
{ fetchurl, stdenv, glib, pkgconfig, udev, libgudev }:
|
2014-01-19 22:14:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-23 13:26:30 +00:00
|
|
|
name = "libwacom-${version}";
|
2018-03-31 12:02:08 +00:00
|
|
|
version = "0.29";
|
2014-01-19 22:14:11 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
|
2018-03-31 12:02:08 +00:00
|
|
|
sha256 = "1diklgcjhmvcxi9p1ifp6wcnyr6k7z9jhrlzfhzjqd6zipk01slw";
|
2014-01-19 22:14:11 +00:00
|
|
|
};
|
|
|
|
|
2016-05-23 13:26:30 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ glib udev libgudev ];
|
2014-01-19 22:14:11 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
2017-11-10 21:13:27 +00:00
|
|
|
homepage = https://sourceforge.net/projects/linuxwacom/;
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
|
2014-01-19 22:14:11 +00:00
|
|
|
};
|
|
|
|
}
|