nixpkgs/pkgs/applications/graphics/sane/drivers.nix
Profpatsch 6376458424 sane: Add support for the unfree Fujitsu ScanSnap drivers
This adds the scanner files already linked from the
`etc/sane.d/epjitsu.conf` file, which are extracted from the Windows
drivers and mirrored on GitHub.

Being a Japanese hardware vendor, Fujitsu’s software release &
licensing methods are horrifying, but their scanners are some of the
best, so we should definitly have discoverable support for them, which
this patch hopefully adds.

Inspiration was taken from the following sources:
https://www.josharcher.uk/code/install-scansnap-s1300-drivers-linux/
https://ubuntuforums.org/archive/index.php/t-1461915.html
https://github.com/stevleibelt/scansnap-firmware
2021-08-01 13:45:46 +02:00

14 lines
341 B
Nix

{ lib, fetchFromGitHub }:
{
# Fujitsu ScanSnap
epjitsu = fetchFromGitHub {
name = "scansnap-firmware";
owner = "stevleibelt";
repo = "scansnap-firmware";
rev = "96c3a8b2a4e4f1ccc4e5827c5eb5598084fd17c8";
sha256 = "1inchnvaqyw9d0skpg8hp5rpn27c09q58lsr42by4bahpbx5qday";
meta.license = lib.licenses.unfree;
};
}