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

21 lines
612 B
Nix
Raw Normal View History

2015-09-08 11:22:27 -07:00
{ fetchurl, stdenv, glib, pkgconfig, udev, libgudev }:
2014-01-19 14:14:11 -08:00
stdenv.mkDerivation rec {
2016-05-23 06:26:30 -07:00
name = "libwacom-${version}";
version = "0.28";
2014-01-19 14:14:11 -08:00
src = fetchurl {
url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
sha256 = "1vv768870597rvwxdb59v6pjn1pxaxg4r6znbb5j3cl828q35mp7";
2014-01-19 14:14:11 -08:00
};
2016-05-23 06:26:30 -07:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib udev libgudev ];
2014-01-19 14:14:11 -08:00
meta = with stdenv.lib; {
platforms = platforms.linux;
homepage = https://sourceforge.net/projects/linuxwacom/;
description = "Libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
2014-01-19 14:14:11 -08:00
};
}