mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
sane: add mkSaneConfig
This commit is contained in:
parent
56994ce2eb
commit
b4c8981064
2 changed files with 29 additions and 0 deletions
27
pkgs/applications/graphics/sane/config.nix
Normal file
27
pkgs/applications/graphics/sane/config.nix
Normal file
|
@ -0,0 +1,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;
|
||||
}
|
|
@ -10735,6 +10735,8 @@ let
|
|||
hotplugSupport = config.sane.hotplugSupport or true;
|
||||
};
|
||||
|
||||
mkSaneConfig = callPackage ../applications/graphics/sane/config.nix { };
|
||||
|
||||
saneFrontends = callPackage ../applications/graphics/sane/frontends.nix { };
|
||||
|
||||
seafile-shared = callPackage ../misc/seafile-shared { };
|
||||
|
|
Loading…
Reference in a new issue