0d3400daf9
svn path=/nixpkgs/trunk/; revision=4643
13 lines
209 B
Bash
13 lines
209 B
Bash
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
|