summary refs log tree commit diff
path: root/pkgs/development/libraries/libwacom/default.nix
blob: a0dd711e815f428a099d4947a26846ae9ffe892e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ fetchurl, stdenv, glib, pkgconfig, udev }:

stdenv.mkDerivation rec {
  name = "libwacom-0.15";

  src = fetchurl {
    url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
    sha256 = "04vppdj99cc0ya44n8p7zjk9yyw03v6fksw0a9n1gpnnsn4wardb";
  };

  buildInputs = [ glib pkgconfig udev ];

  meta = with stdenv.lib; {
    platforms = platforms.linux;
    homepage = http://sourceforge.net/projects/linuxwacom/;
    description = "libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
  };

}