2019-09-09 12:07:46 +02:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, imagemagickBig
|
|
|
|
, pkgconfig
|
|
|
|
, libX11
|
|
|
|
, libv4l
|
2019-09-10 05:54:35 +02:00
|
|
|
, qtbase
|
|
|
|
, qtx11extras
|
|
|
|
, wrapQtAppsHook
|
2019-09-10 08:13:10 +02:00
|
|
|
, wrapGAppsHook
|
2019-09-10 01:05:55 +02:00
|
|
|
, gtk3
|
2019-09-09 12:07:46 +02:00
|
|
|
, xmlto
|
|
|
|
, docbook_xsl
|
|
|
|
, autoreconfHook
|
|
|
|
, dbus
|
|
|
|
, enableVideo ? stdenv.isLinux
|
|
|
|
, enableDbus ? stdenv.isLinux
|
2015-04-03 11:35:10 +02:00
|
|
|
}:
|
2011-09-04 11:12:00 +02:00
|
|
|
|
2019-09-09 12:07:46 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-03 11:35:10 +02:00
|
|
|
pname = "zbar";
|
2019-05-29 17:25:42 +02:00
|
|
|
version = "0.23";
|
2019-03-25 09:59:21 +01:00
|
|
|
|
2019-09-10 00:35:05 +02:00
|
|
|
outputs = [ "out" "lib" "dev" "doc" "man" ];
|
2019-06-23 13:39:01 +02:00
|
|
|
|
2019-03-25 09:59:21 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mchehab";
|
|
|
|
repo = "zbar";
|
|
|
|
rev = version;
|
2019-05-29 17:25:42 +02:00
|
|
|
sha256 = "0hlxakpyjg4q9hp7yp3har1n78341b4knwyll28hn48vykg28pza";
|
2011-09-04 11:12:00 +02:00
|
|
|
};
|
|
|
|
|
2019-09-09 12:07:46 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
xmlto
|
|
|
|
autoreconfHook
|
|
|
|
docbook_xsl
|
2019-09-10 05:54:35 +02:00
|
|
|
wrapQtAppsHook
|
2019-09-10 08:13:10 +02:00
|
|
|
wrapGAppsHook
|
2019-09-09 12:07:46 +02:00
|
|
|
];
|
2015-10-28 10:15:15 +01:00
|
|
|
|
2019-03-25 09:59:21 +01:00
|
|
|
buildInputs = [
|
2019-09-09 12:07:46 +02:00
|
|
|
imagemagickBig
|
|
|
|
libX11
|
|
|
|
] ++ lib.optionals enableDbus [
|
|
|
|
dbus
|
|
|
|
] ++ lib.optionals enableVideo [
|
|
|
|
libv4l
|
2019-09-10 01:05:55 +02:00
|
|
|
gtk3
|
2019-09-10 05:54:35 +02:00
|
|
|
qtbase
|
|
|
|
qtx11extras
|
2019-03-25 09:59:21 +01:00
|
|
|
];
|
2018-01-03 21:39:24 +01:00
|
|
|
|
2019-09-21 03:45:15 +02:00
|
|
|
# Disable assertions which include -dev QtBase file paths.
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-DQT_NO_DEBUG" ];
|
|
|
|
|
2019-09-10 00:35:05 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--without-python"
|
|
|
|
] ++ (if enableDbus then [
|
2019-09-16 04:57:26 +02:00
|
|
|
"--with-dbusconfdir=${placeholder "out"}/share"
|
2019-09-09 12:07:46 +02:00
|
|
|
] else [
|
|
|
|
"--without-dbus"
|
2019-09-10 01:05:55 +02:00
|
|
|
]) ++ (if enableVideo then [
|
|
|
|
"--with-gtk=gtk3"
|
|
|
|
] else [
|
2019-09-09 12:07:46 +02:00
|
|
|
"--disable-video"
|
|
|
|
"--without-gtk"
|
|
|
|
"--without-qt"
|
2019-09-10 01:05:55 +02:00
|
|
|
]);
|
2016-02-24 16:17:41 +01:00
|
|
|
|
2019-09-10 00:55:11 +02:00
|
|
|
dontWrapQtApps = true;
|
2019-09-10 01:05:55 +02:00
|
|
|
dontWrapGApps = true;
|
2019-09-10 00:55:11 +02:00
|
|
|
|
|
|
|
postFixup = lib.optionalString enableVideo ''
|
2019-09-10 08:13:10 +02:00
|
|
|
wrapGApp "$out/bin/zbarcam-gtk"
|
2019-09-10 00:55:11 +02:00
|
|
|
wrapQtApp "$out/bin/zbarcam-qt"
|
|
|
|
'';
|
|
|
|
|
2019-09-09 12:07:46 +02:00
|
|
|
meta = with lib; {
|
2014-06-23 14:45:01 +02: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 09:59:21 +01:00
|
|
|
maintainers = with maintainers; [ delroth raskin ];
|
2018-01-03 21:39:24 +01:00
|
|
|
platforms = platforms.unix;
|
2015-04-03 11:35:10 +02:00
|
|
|
license = licenses.lgpl21;
|
2019-03-25 09:59:21 +01:00
|
|
|
homepage = https://github.com/mchehab/zbar;
|
2011-09-04 11:12:00 +02:00
|
|
|
};
|
2015-04-03 11:35:10 +02:00
|
|
|
}
|