about summary refs log tree commit diff
path: root/pkgs/applications/graphics/sane/config.nix
blob: 4b8c7a4fe921059c3a0d68589046d677df8b62ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv }:

{ paths }:

with stdenv.lib;
let installSanePath = path: ''
      if test -e "${path}/lib/sane"; then
        find "${path}/lib/sane" -maxdepth 1 -not -type d | while read backend; do
          ln -s $backend $out/lib/sane/$(basename $backend)
        done
      fi

      if test -e "${path}/etc/sane.d"; then
        find "${path}/etc/sane.d" -maxdepth 1 -not -type d | while read conf; do
          if test $(basename $conf) = "dll.conf"; then
            cat $conf >> $out/etc/sane.d/dll.conf
          else
            ln -s $conf $out/etc/sane.d/$(basename $conf)
          fi
        done
      fi

      if test -e "${path}/etc/sane.d/dll.d"; then
        find "${path}/etc/sane.d/dll.d" -maxdepth 1 -not -type d | while read conf; do
          ln -s $conf $out/etc/sane.d/dll.d/$(basename $conf)
        done
      fi
    '';
in
stdenv.mkDerivation {
  name = "sane-config";
  phases = "installPhase";

  installPhase = ''
    mkdir -p $out/etc/sane.d $out/etc/sane.d/dll.d $out/lib/sane
  '' + concatMapStrings installSanePath paths;
}