about summary refs log tree commit diff
path: root/pkgs/misc/sane-backends/builder.sh
blob: 5c40eaaa9b969e8a6c6056fa26f64299e11d8358 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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