nixpkgs/pkgs/tools/graphics/zbar/default.nix

86 lines
1.7 KiB
Nix
Raw Normal View History

2019-09-09 10:07:46 +00:00
{ stdenv
, lib
, fetchFromGitHub
, imagemagickBig
, pkgconfig
, perl
, libX11
, libv4l
, qt5
, gtk2
, xmlto
, docbook_xsl
, autoreconfHook
, dbus
, enableVideo ? stdenv.isLinux
, enableDbus ? stdenv.isLinux
2015-04-03 09:35:10 +00:00
}:
2019-09-09 10:07:46 +00:00
stdenv.mkDerivation rec {
2015-04-03 09:35:10 +00:00
pname = "zbar";
2019-05-29 15:25:42 +00:00
version = "0.23";
outputs = [ "out" "lib" "dev" "doc" "man" ];
src = fetchFromGitHub {
owner = "mchehab";
repo = "zbar";
rev = version;
2019-05-29 15:25:42 +00:00
sha256 = "0hlxakpyjg4q9hp7yp3har1n78341b4knwyll28hn48vykg28pza";
};
2019-09-09 10:07:46 +00:00
nativeBuildInputs = [
pkgconfig
xmlto
autoreconfHook
docbook_xsl
2019-09-09 22:55:11 +00:00
qt5.wrapQtAppsHook
2019-09-09 10:07:46 +00:00
];
buildInputs = [
2019-09-09 10:07:46 +00:00
imagemagickBig
perl
libX11
] ++ lib.optionals enableDbus [
dbus
] ++ lib.optionals enableVideo [
libv4l
gtk2
qt5.qtbase
qt5.qtx11extras
];
configureFlags = [
"--without-python"
] ++ (if enableDbus then [
"--with-dbusconfdir=${placeholder "out"}/etc"
2019-09-09 10:07:46 +00:00
] else [
"--without-dbus"
]) ++ lib.optionals (!enableVideo) [
"--disable-video"
"--without-gtk"
"--without-qt"
];
2016-02-24 15:17:41 +00:00
2019-09-09 22:55:11 +00:00
dontWrapQtApps = true;
postFixup = lib.optionalString enableVideo ''
wrapQtApp "$out/bin/zbarcam-qt"
'';
2019-09-09 10:07:46 +00:00
meta = with lib; {
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.
'';
maintainers = with maintainers; [ delroth raskin ];
platforms = platforms.unix;
2015-04-03 09:35:10 +00:00
license = licenses.lgpl21;
homepage = https://github.com/mchehab/zbar;
};
2015-04-03 09:35:10 +00:00
}