mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
, testers
|
|
, qmake
|
|
, qtmultimedia
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "qzxing";
|
|
version = "3.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ftylitak";
|
|
repo = "qzxing";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-ASgsF5ocNWAiIy2jm6ygpDkggBcEpno6iVNWYkuWcVI=";
|
|
};
|
|
|
|
# QMake can't find qtmultimedia in buildInputs
|
|
strictDeps = false;
|
|
|
|
nativeBuildInputs = [
|
|
qmake
|
|
];
|
|
|
|
buildInputs = [
|
|
qtmultimedia
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
preConfigure = ''
|
|
cd src
|
|
'';
|
|
|
|
qmakeFlags = [
|
|
"CONFIG+=qzxing_qml"
|
|
"CONFIG+=qzxing_multimedia"
|
|
"QMAKE_PKGCONFIG_PREFIX=${placeholder "out"}"
|
|
];
|
|
|
|
passthru = {
|
|
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Qt/QML wrapper library for the ZXing library";
|
|
homepage = "https://github.com/ftylitak/qzxing";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ OPNA2608 ];
|
|
platforms = platforms.unix;
|
|
pkgConfigModules = [
|
|
"QZXing"
|
|
];
|
|
};
|
|
})
|