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
{ fetchurl, stdenv, glib, pkgconfig, udev, libgudev }:
2
3
stdenv.mkDerivation rec {
4
-
name = "libwacom-0.15";
0
5
6
src = fetchurl {
7
url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
8
-
sha256 = "04vppdj99cc0ya44n8p7zjk9yyw03v6fksw0a9n1gpnnsn4wardb";
9
};
10
11
-
buildInputs = [ glib pkgconfig udev libgudev ];
0
12
13
meta = with stdenv.lib; {
14
platforms = platforms.linux;
15
homepage = http://sourceforge.net/projects/linuxwacom/;
16
description = "libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
17
};
18
-
19
}
···
1
{ fetchurl, stdenv, glib, pkgconfig, udev, libgudev }:
2
3
stdenv.mkDerivation rec {
4
+
name = "libwacom-${version}";
5
+
version = "0.19";
6
7
src = fetchurl {
8
url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
9
+
sha256 = "1zsmp2l53fbfy6jykh4c0i127baf503lq2fvd5y1066ihp6qh3b2";
10
};
11
12
+
nativeBuildInputs = [ pkgconfig ];
13
+
buildInputs = [ glib udev libgudev ];
14
15
meta = with stdenv.lib; {
16
platforms = platforms.linux;
17
homepage = http://sourceforge.net/projects/linuxwacom/;
18
description = "libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
19
};
0
20
}