Advertisement
Guest User

Untitled

a guest
Jan 8th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. { stdenv, fetchgit, cmake, boost }:
  2.  
  3. stdenv.mkDerivation rec {
  4. name = "imagescan-${version}";
  5. version = "3.50.0";
  6. src = fetchgit {
  7. url = https://gitlab.com/utsushi/imagescan;
  8. rev = version;
  9. sha256 = "0f5pmljqlpi44s70hxlmpdnfpk320ayz1bry5sv5fb6sx4vlsq08";
  10. };
  11.  
  12. #configurePhase = "./configure --with-boost-libdir=${boost}/lib";
  13. configureFlags = [ "--enable-code-coverage" "--enable-sane-config" ];
  14.  
  15. buildInputs = [ cmake boost ];
  16. buildFlags = [ "-Wno-error"];
  17.  
  18. meta = with stdenv.lib; {
  19. description = "A Next Generation Image Acquisition & Epson scanner driver";
  20. longDescription = ''
  21. This software provides applications to easily turn hard-copy
  22. documents and imagery into formats that are more amenable to
  23. computer processing.
  24.  
  25. Included are a native driver for a number of EPSON scanners
  26. and a compatibility driver to interface with software built
  27. around the SANE standard.
  28. '';
  29. homepage = https://gitlab.com/utsushi/imagescan;
  30. license = licenses.gpl3;
  31. maintainers = with maintainers; [ wucke13 ];
  32. platforms = platforms.linux;
  33. };
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement