2d57df881f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libwacom/versions. These checks were done: - built on NixOS - ran `/nix/store/pdk4f0vsb3ynh1jdvqfinji6grl47m8m-libwacom-0.29/bin/libwacom-list-local-devices -h` got 0 exit code - ran `/nix/store/pdk4f0vsb3ynh1jdvqfinji6grl47m8m-libwacom-0.29/bin/libwacom-list-local-devices --help` got 0 exit code - ran `/nix/store/pdk4f0vsb3ynh1jdvqfinji6grl47m8m-libwacom-0.29/bin/libwacom-list-local-devices help` got 0 exit code - found 0.29 with grep in /nix/store/pdk4f0vsb3ynh1jdvqfinji6grl47m8m-libwacom-0.29 - directory tree listing: https://gist.github.com/cc947710a926712edfc2c49d7f55510b
21 lines
612 B
Nix
21 lines
612 B
Nix
{ fetchurl, stdenv, glib, pkgconfig, udev, libgudev }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libwacom-${version}";
|
|
version = "0.29";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
|
|
sha256 = "1diklgcjhmvcxi9p1ifp6wcnyr6k7z9jhrlzfhzjqd6zipk01slw";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ glib udev libgudev ];
|
|
|
|
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";
|
|
};
|
|
}
|