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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

112 lines
2.5 KiB
Nix
Raw Normal View History

2019-09-09 10:07:46 +00:00
{ stdenv
, lib
, fetchFromGitHub
, imagemagickBig
, pkg-config
2022-12-05 00:15:20 +00:00
, withXorg ? true
2019-09-09 10:07:46 +00:00
, libX11
, libv4l
2019-09-10 03:54:35 +00:00
, qtbase
, qtx11extras
, wrapQtAppsHook
, wrapGAppsHook
2019-09-09 23:05:55 +00:00
, gtk3
2019-09-09 10:07:46 +00:00
, xmlto
, docbook_xsl
, autoreconfHook
, dbus
, enableVideo ? stdenv.isLinux
# The implementation is buggy and produces an error like
# Name Error (Connection ":1.4380" is not allowed to own the service "org.linuxtv.Zbar" due to security policies in the configuration file)
# for every scanned code.
# see https://github.com/mchehab/zbar/issues/104
, enableDbus ? false
2020-06-01 10:56:21 +00:00
, libintl
2022-12-05 22:27:51 +00:00
, libiconv
, Foundation
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";
2021-02-18 19:23:27 +00:00
version = "0.23.90";
outputs = [ "out" "lib" "dev" "doc" "man" ];
src = fetchFromGitHub {
owner = "mchehab";
repo = "zbar";
rev = version;
2021-02-18 19:23:27 +00:00
sha256 = "sha256-FvV7TMc4JbOiRjWLka0IhtpGGqGm5fis7h870OmJw2U=";
};
2019-09-09 10:07:46 +00:00
nativeBuildInputs = [
pkg-config
2019-09-09 10:07:46 +00:00
xmlto
autoreconfHook
docbook_xsl
] ++ lib.optionals enableVideo [
wrapGAppsHook
wrapQtAppsHook
2019-09-09 10:07:46 +00:00
];
buildInputs = [
2019-09-09 10:07:46 +00:00
imagemagickBig
2020-06-01 10:56:21 +00:00
libintl
2022-12-05 22:27:51 +00:00
] ++ lib.optionals stdenv.isDarwin [
libiconv
Foundation
2019-09-09 10:07:46 +00:00
] ++ lib.optionals enableDbus [
dbus
2022-12-05 00:15:20 +00:00
] ++ lib.optionals withXorg [
libX11
2019-09-09 10:07:46 +00:00
] ++ lib.optionals enableVideo [
libv4l
2019-09-09 23:05:55 +00:00
gtk3
2019-09-10 03:54:35 +00:00
qtbase
qtx11extras
];
# Disable assertions which include -dev QtBase file paths.
2019-10-30 00:40:49 +00:00
NIX_CFLAGS_COMPILE = "-DQT_NO_DEBUG";
configureFlags = [
"--without-python"
] ++ (if enableDbus then [
"--with-dbusconfdir=${placeholder "out"}/share"
2019-09-09 10:07:46 +00:00
] else [
"--without-dbus"
2019-09-09 23:05:55 +00:00
]) ++ (if enableVideo then [
"--with-gtk=gtk3"
] else [
2019-09-09 10:07:46 +00:00
"--disable-video"
"--without-gtk"
"--without-qt"
2019-09-09 23:05:55 +00:00
]);
2016-02-24 15:17:41 +00:00
2019-09-09 22:55:11 +00:00
dontWrapQtApps = true;
2019-09-09 23:05:55 +00:00
dontWrapGApps = true;
2019-09-09 22:55:11 +00:00
postFixup = lib.optionalString enableVideo ''
wrapGApp "$out/bin/zbarcam-gtk"
2019-09-09 22:55:11 +00:00
wrapQtApp "$out/bin/zbarcam-qt"
'';
enableParallelBuilding = true;
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";
mainProgram = "zbarimg";
};
2015-04-03 09:35:10 +00:00
}