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

97 lines
2 KiB
Nix
Raw Normal View History

2019-09-09 10:07:46 +00:00
{ stdenv
, lib
, fetchFromGitHub
, imagemagickBig
, pkg-config
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
, enableDbus ? stdenv.isLinux
2020-06-01 10:56:21 +00:00
, libintl
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
2019-09-10 03:54:35 +00:00
wrapQtAppsHook
wrapGAppsHook
2019-09-09 10:07:46 +00:00
];
buildInputs = [
2019-09-09 10:07:46 +00:00
imagemagickBig
libX11
2020-06-01 10:56:21 +00:00
libintl
2019-09-09 10:07:46 +00:00
] ++ lib.optionals enableDbus [
dbus
] ++ 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"
'';
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
}