bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
21 lines
611 B
Nix
21 lines
611 B
Nix
{ fetchurl, stdenv, glib, pkgconfig, udev, libgudev }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libwacom-${version}";
|
|
version = "0.19";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
|
|
sha256 = "1zsmp2l53fbfy6jykh4c0i127baf503lq2fvd5y1066ihp6qh3b2";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ glib udev libgudev ];
|
|
|
|
meta = with stdenv.lib; {
|
|
platforms = platforms.linux;
|
|
homepage = http://sourceforge.net/projects/linuxwacom/;
|
|
description = "Libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
|
|
};
|
|
}
|