nixpkgs/pkgs/development/libraries/libwacom/default.nix

21 lines
611 B
Nix
Raw Normal View History

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}";
2016-12-25 21:55:48 +00:00
version = "0.22";
2014-01-19 22:14:11 +00:00
src = fetchurl {
url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
2016-12-25 21:55:48 +00:00
sha256 = "1h10awwapj5v8nik220ga0raggv3lgaq0kzwlma2qjmzdhhrrhcp";
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;
homepage = http://sourceforge.net/projects/linuxwacom/;
description = "Libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
2014-01-19 22:14:11 +00:00
};
}