2019-03-25 08:59:21 +00:00
|
|
|
{ stdenv, fetchFromGitHub, imagemagickBig, pkgconfig, python2Packages, perl
|
|
|
|
, libX11, libv4l, qt5, lzma, gtk2, xmlto, docbook_xsl, autoreconfHook
|
2018-01-03 20:39:24 +00:00
|
|
|
, enableVideo ? stdenv.isLinux
|
2015-04-03 10:35:10 +01:00
|
|
|
}:
|
2011-09-04 10:12:00 +01:00
|
|
|
|
2016-09-26 09:28:07 +01:00
|
|
|
let
|
2016-11-25 09:02:57 +00:00
|
|
|
inherit (python2Packages) pygtk python;
|
2016-09-26 09:28:07 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2015-04-03 10:35:10 +01:00
|
|
|
pname = "zbar";
|
2019-03-25 08:59:21 +00:00
|
|
|
version = "0.22";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mchehab";
|
|
|
|
repo = "zbar";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0pz0vq6a97vnc3lcjw9k12dk2awgmws46cjfh16zin0jiz18d1xq";
|
2011-09-04 10:12:00 +01:00
|
|
|
};
|
|
|
|
|
2019-03-25 08:59:21 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig xmlto autoreconfHook docbook_xsl ];
|
2015-10-28 09:15:15 +00:00
|
|
|
|
2019-03-25 08:59:21 +00:00
|
|
|
buildInputs = [
|
|
|
|
imagemagickBig python pygtk perl libX11
|
|
|
|
] ++ stdenv.lib.optionals enableVideo [
|
|
|
|
libv4l gtk2 qt5.qtbase qt5.qtx11extras
|
|
|
|
];
|
2018-01-03 20:39:24 +00:00
|
|
|
|
2019-03-25 08:59:21 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-dbusconfdir=$out/etc/dbus-1/system.d"
|
|
|
|
] ++ stdenv.lib.optionals (!enableVideo) [
|
2018-01-03 20:39:24 +00:00
|
|
|
"--disable-video" "--without-gtk" "--without-qt"
|
|
|
|
];
|
2016-02-24 15:17:41 +00:00
|
|
|
|
2015-04-03 10:35:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-06-23 13:45:01 +01:00
|
|
|
description = "Bar code reader";
|
|
|
|
longDescription = ''
|
|
|
|
ZBar is an open source software suite for reading bar codes from various
|
|
|
|
sources, such as video streams, image files and raw intensity sensors. It
|
|
|
|
supports many popular symbologies (types of bar codes) including
|
|
|
|
EAN-13/UPC-A, UPC-E, EAN-8, Code 128, Code 39, Interleaved 2 of 5 and QR
|
|
|
|
Code.
|
|
|
|
'';
|
2019-03-25 08:59:21 +00:00
|
|
|
maintainers = with maintainers; [ delroth raskin ];
|
2018-01-03 20:39:24 +00:00
|
|
|
platforms = platforms.unix;
|
2015-04-03 10:35:10 +01:00
|
|
|
license = licenses.lgpl21;
|
2019-03-25 08:59:21 +00:00
|
|
|
homepage = https://github.com/mchehab/zbar;
|
2011-09-04 10:12:00 +01:00
|
|
|
};
|
2015-04-03 10:35:10 +01:00
|
|
|
}
|