4dca405b3d
hotplug -> udev svn path=/nixpkgs/trunk/; revision=6001
13 lines
230 B
Bash
13 lines
230 B
Bash
source $stdenv/setup
|
|
|
|
postInstall() {
|
|
if test "$udevSupport" = "1" ; then
|
|
ensureDir $out/etc/udev/rules.d/
|
|
cp tools/udev/libsane.rules $out/etc/udev/rules.d/60-libsane.rules
|
|
fi
|
|
}
|
|
|
|
postInstall=postInstall
|
|
|
|
genericBuild
|