depot/pkgs/by-name/zx/zxing-cpp/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

57 lines
1.4 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, python3
, gitUpdater
}:
stdenv.mkDerivation (finalAttrs: {
pname = "zxing-cpp";
version = "2.2.1";
src = fetchFromGitHub {
owner = "zxing-cpp";
repo = "zxing-cpp";
rev = "v${finalAttrs.version}";
hash = "sha256-teFspdATn9M7Z1vSr/7PdJx/xAv+TVai8rIekxqpBZk=";
};
nativeBuildInputs = [
cmake
pkg-config
];
cmakeFlags = [
"-DBUILD_EXAMPLES=OFF"
"-DBUILD_BLACKBOX_TESTS=OFF"
];
passthru = {
tests = {
inherit (python3.pkgs) zxing-cpp;
};
updateScript = gitUpdater {
rev-prefix = "v";
};
};
meta = {
homepage = "https://github.com/zxing-cpp/zxing-cpp";
changelog = "https://github.com/zxing-cpp/zxing-cpp/releases/tag/${finalAttrs.src.rev}";
description = "C++ port of zxing (a Java barcode image processing library)";
longDescription = ''
ZXing-C++ ("zebra crossing") is an open-source, multi-format 1D/2D barcode
image processing library implemented in C++.
It was originally ported from the Java ZXing Library but has been
developed further and now includes many improvements in terms of quality
and performance. It can both read and write barcodes in a number of
formats.
'';
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ AndersonTorres lukegb ];
platforms = lib.platforms.unix;
};
})