summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2013-08-25 21:19:21 +0200
committerCillian de Róiste <goibhniu@fsfe.org>2013-11-09 15:03:12 +0100
commit46646feb17e33bf65ea38830260577277fd4090d (patch)
tree28720a8b5ddd29d80e48a9e9523b088cb8b18dd7 /pkgs/top-level
parentb3ea42462cfcc35c8de949277c93b01fe77e812e (diff)
downloadnixlib-46646feb17e33bf65ea38830260577277fd4090d.tar
nixlib-46646feb17e33bf65ea38830260577277fd4090d.tar.gz
nixlib-46646feb17e33bf65ea38830260577277fd4090d.tar.bz2
nixlib-46646feb17e33bf65ea38830260577277fd4090d.tar.lz
nixlib-46646feb17e33bf65ea38830260577277fd4090d.tar.xz
nixlib-46646feb17e33bf65ea38830260577277fd4090d.tar.zst
nixlib-46646feb17e33bf65ea38830260577277fd4090d.zip
sane: add support for Epson snapscan scanners
The firmware file needs to be downloaded or extracted from the windows
driver file and configured in nixpkgs.config e.g.:

sane.snapscanFirmware = /firmware/esfw41.bin;
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 674dd7dd9980..2dbc9c2e1bb2 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -10067,12 +10067,14 @@ let
 
   saneBackends = callPackage ../applications/graphics/sane/backends.nix {
     gt68xxFirmware = config.sane.gt68xxFirmware or null;
+    snapscanFirmware = config.sane.snapscanFirmware or null;
     hotplugSupport = config.sane.hotplugSupport or true;
     libusb = libusb1;
   };
 
   saneBackendsGit = callPackage ../applications/graphics/sane/backends-git.nix {
     gt68xxFirmware = config.sane.gt68xxFirmware or null;
+    snapscanFirmware = config.sane.snapscanFirmware or null;
     hotplugSupport = config.sane.hotplugSupport or true;
   };