tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libwacom: 0.15 -> 0.19
Tobias Geerinckx-Rice
9 years ago
dc6172b0
cd99bb56
+5
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libwacom
default.nix
+5
-4
pkgs/development/libraries/libwacom/default.nix
···
1
1
{ fetchurl, stdenv, glib, pkgconfig, udev, libgudev }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "libwacom-0.15";
4
4
+
name = "libwacom-${version}";
5
5
+
version = "0.19";
5
6
6
7
src = fetchurl {
7
8
url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
8
8
-
sha256 = "04vppdj99cc0ya44n8p7zjk9yyw03v6fksw0a9n1gpnnsn4wardb";
9
9
+
sha256 = "1zsmp2l53fbfy6jykh4c0i127baf503lq2fvd5y1066ihp6qh3b2";
9
10
};
10
11
11
11
-
buildInputs = [ glib pkgconfig udev libgudev ];
12
12
+
nativeBuildInputs = [ pkgconfig ];
13
13
+
buildInputs = [ glib udev libgudev ];
12
14
13
15
meta = with stdenv.lib; {
14
16
platforms = platforms.linux;
15
17
homepage = http://sourceforge.net/projects/linuxwacom/;
16
18
description = "libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
17
19
};
18
18
-
19
20
}