nixpkgs/pkgs/applications/graphics/sane/config.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.7 KiB
Nix
Raw Normal View History

2021-01-15 16:21:58 +03:00
{ lib, stdenv }:
2014-05-11 22:30:33 +04:00
{ paths, disabledDefaultBackends ? [] }:
2014-05-11 22:30:33 +04:00
2021-01-15 16:21:58 +03:00
with lib;
let
installSanePath = path: ''
2016-11-11 03:49:02 +03:00
if [ -e "${path}/lib/sane" ]; then
find "${path}/lib/sane" -maxdepth 1 -not -type d | while read backend; do
symlink "$backend" "$out/lib/sane/$(basename "$backend")"
done
fi
2014-05-11 22:30:33 +04:00
2016-11-11 03:49:02 +03:00
if [ -e "${path}/etc/sane.d" ]; then
find "${path}/etc/sane.d" -maxdepth 1 -not -type d | while read conf; do
2016-11-11 03:49:02 +03:00
name="$(basename $conf)"
2016-11-11 04:12:04 +03:00
if [ "$name" = "dll.conf" ] || [ "$name" = "saned.conf" ] || [ "$name" = "net.conf" ]; then
2016-11-11 03:49:02 +03:00
cat "$conf" >> "$out/etc/sane.d/$name"
else
symlink "$conf" "$out/etc/sane.d/$name"
fi
done
fi
2014-05-11 22:30:33 +04:00
2016-11-11 03:49:02 +03:00
if [ -e "${path}/etc/sane.d/dll.d" ]; then
find "${path}/etc/sane.d/dll.d" -maxdepth 1 -not -type d | while read conf; do
symlink "$conf" "$out/etc/sane.d/dll.d/$(basename $conf)"
done
fi
2014-05-11 22:30:33 +04:00
'';
disableBackend = backend: ''
grep -q '${backend}' $out/etc/sane.d/dll.conf || { echo '${backend} is not a default plugin in $SANE_CONFIG_DIR/dll.conf'; exit 1; }
substituteInPlace $out/etc/sane.d/dll.conf --replace '${backend}' '# ${backend} disabled in nixos config'
'';
2014-05-11 22:30:33 +04:00
in
stdenv.mkDerivation {
name = "sane-config";
2022-02-23 19:41:31 +03:00
dontUnpack = true;
2014-05-11 22:30:33 +04:00
installPhase = ''
function symlink () {
local target=$1 linkname=$2
if [ -e "$linkname" ]; then
echo "warning: conflict for $linkname. Overriding $(readlink $linkname) with $target."
fi
ln -sfn "$target" "$linkname"
}
2014-05-11 22:30:33 +04:00
mkdir -p $out/etc/sane.d $out/etc/sane.d/dll.d $out/lib/sane
''
+ (concatMapStrings installSanePath paths)
+ (concatMapStrings disableBackend disabledDefaultBackends);
2014-05-11 22:30:33 +04:00
}