summary refs log tree commit diff
path: root/pkgs/development/libraries/libwacom/default.nix
blob: f6244cba5cb140c5f9089bb7bdd7506145c93123 (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.7.1";

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

  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";
  };

}