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