about summary refs log tree commit diff
path: root/pkgs/applications/graphics/sane/config.nix
blob: fc1cd81ebc6e59b702f42dfc32b1db0991d314f7 (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
{ stdenv }:

{ paths }:

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

      find "${path}/etc/sane.d" -not -type d -maxdepth 1 | while read conf; do
        ln -s $conf $out/etc/sane.d/$(basename $conf)
      done

      find "${path}/etc/sane.d/dll.d" -not -type d -maxdepth 1 | while read conf; do
        ln -s $conf $out/etc/sane.d/dll.d/$(basename $conf)
      done
    '';
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;
}