about summary refs log tree commit diff
path: root/pkgs/misc/linuxwacom/default.nix
blob: c7fc90e1b8850008371aec6c49200aadce6b8656 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, libX11, libXi, udevSupport ? false}:

stdenv.mkDerivation {
  name = "linuxwacom-0.7.2";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/linuxwacom-0.7.2.tar.bz2;
    md5 = "3f6290101d5712a24097243ca9f092ed";
  };
  buildInputs = [libX11 libXi];
  udevRules = ./10-wacom.rules;
  inherit udevSupport;
}