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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
849 B
Nix
Raw Normal View History

{ stdenv
, lib
, fetchFromGitHub
, meson
, ninja
, glib
, pkg-config
, udev
, libgudev
, python3
}:
2014-01-19 22:14:11 +00:00
stdenv.mkDerivation rec {
pname = "libwacom";
2022-03-16 11:12:45 +00:00
version = "2.1.0";
2019-09-20 15:30:30 +00:00
outputs = [ "out" "dev" ];
2014-01-19 22:14:11 +00:00
src = fetchFromGitHub {
owner = "linuxwacom";
repo = "libwacom";
rev = "libwacom-${version}";
2022-03-16 11:12:45 +00:00
sha256 = "sha256-yqOhlbOgDIAsxgQWoLKj7WpwJXvxeuW8yCvuKTtE7h0=";
2014-01-19 22:14:11 +00:00
};
nativeBuildInputs = [
pkg-config
meson
ninja
python3
];
2019-09-20 15:30:30 +00:00
buildInputs = [
glib
udev
libgudev
];
2019-09-20 15:30:30 +00:00
mesonFlags = [
"-Dtests=disabled"
];
2014-01-19 22:14:11 +00:00
meta = with lib; {
2014-01-19 22:14:11 +00:00
platforms = platforms.linux;
homepage = "https://linuxwacom.github.io/";
description = "Libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
2020-04-14 12:55:10 +00:00
maintainers = teams.freedesktop.members;
license = licenses.mit;
2014-01-19 22:14:11 +00:00
};
}