1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 19:15:39 +00:00
nixpkgs/pkgs/development/libraries/libwacom/default.nix

21 lines
612 B
Nix
Raw Normal View History

2015-09-08 19:22:27 +01:00
{ fetchurl, stdenv, glib, pkgconfig, udev, libgudev }:
2014-01-19 22:14:11 +00:00
stdenv.mkDerivation rec {
2016-05-23 14:26:30 +01:00
name = "libwacom-${version}";
version = "0.26";
2014-01-19 22:14:11 +00:00
src = fetchurl {
url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
sha256 = "0xpvkjvzaj9blcmw8ha46616bzfivj99kwzvr91clxd6iaf11r63";
2014-01-19 22:14:11 +00:00
};
2016-05-23 14:26:30 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib udev libgudev ];
2014-01-19 22:14:11 +00: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 22:14:11 +00:00
};
}