3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/graphics/sane/backends/git.nix
Tobias Geerinckx-Rice 6b2cdf8cd1
sane-backends-git: 2016-05-09 -> 2016-06-11
fujitsu backend v131:
- hide compression-arg option when jpeg disabled
- add Send/SC/GHS macros for recent scanners
- add initial support for fi-74x0
- add initial support for fi-7030
- set has_MS_lamp=0 for fi-71x0
- add I18N macros to all option titles and descriptions
- add usb ids for many newer scanners
2016-06-12 00:28:55 +02:00

11 lines
329 B
Nix

{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // {
version = "2016-06-11";
src = fetchgit {
sha256 = "6312c514e3c47f3f7003e3f54750485950720aaa35c8f0e5b7a361bc04e2a795";
rev = "5ba37467e88ca8052973b37128ce8fd36ad5d61d";
url = "git://alioth.debian.org/git/sane/sane-backends.git";
};
})