summary refs log tree commit diff
path: root/pkgs/misc/linuxwacom/builder.sh
blob: d38726c7efb6fe1833c694259fb72d5dfcc92708 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
source $stdenv/setup

postInstall() {
  if test -n "$udevSupport"; then
    ensureDir $out/etc/udev/rules.d
    cp $udevRules $out/etc/udev/rules.d/10-wacom.rules
  fi
}

postInstall=postInstall

genericBuild