2024-07-27 06:49:29 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch2, SDL_gfx, SDL, libjpeg, libpng
|
|
|
|
, opencv, pkg-config }:
|
2021-05-03 20:48:10 +00:00
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2021-05-03 20:48:10 +00:00
|
|
|
pname = "quirc";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "1.2";
|
2021-05-03 20:48:10 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dlbeer";
|
|
|
|
repo = "quirc";
|
2024-04-21 15:54:59 +00:00
|
|
|
rev = "v${finalAttrs.version}";
|
|
|
|
hash = "sha256-zdq/YKL33jJXa10RqmQIl06rRYnrthWG+umT4dipft0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2021-05-03 20:48:10 +00:00
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
postPatch = ''
|
|
|
|
# don't try to change ownership
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace-fail "-o root" "" \
|
|
|
|
--replace-fail "-g root" ""
|
|
|
|
'';
|
|
|
|
|
2021-05-03 20:48:10 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2022-04-15 01:41:22 +00:00
|
|
|
buildInputs = [ SDL SDL_gfx libjpeg libpng opencv ];
|
2021-05-03 20:48:10 +00:00
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2023-03-04 12:14:45 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-I${lib.getDev SDL}/include/SDL -I${SDL_gfx}/include/SDL";
|
2021-05-03 20:48:10 +00:00
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch2 {
|
|
|
|
url = "https://github.com/dlbeer/quirc/commit/2c350d8aaf37246e538a2c93b2cce8c78600d2fc.patch?full_index=1";
|
|
|
|
hash = "sha256-ZTcy/EoOBoyOjtXjmT+J/JcbX8lxGKmbWer23lymbWo=";
|
|
|
|
})
|
|
|
|
(fetchpatch2 {
|
|
|
|
url = "https://github.com/dlbeer/quirc/commit/257c6c94d99960819ecabf72199e5822f60a3bc5.patch?full_index=1";
|
|
|
|
hash = "sha256-WLQK7vy34VmgJzppTnRjAcZoSGWVaXQSaGq9An8W0rw=";
|
|
|
|
})
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
# Disable building of linux-only demos on darwin systems
|
|
|
|
./0001-Don-t-build-demos.patch
|
|
|
|
];
|
2022-04-15 01:41:22 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
preInstall = ''
|
|
|
|
mkdir -p "$out"/{bin,lib,include}
|
2021-05-03 20:48:10 +00:00
|
|
|
|
|
|
|
# install all binaries
|
2024-07-27 06:49:29 +00:00
|
|
|
find -maxdepth 1 -type f -executable ! -name '*.so.*' ! -name '*.dylib' \
|
|
|
|
| xargs cp -t "$out"/bin
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
2021-05-03 20:48:10 +00:00
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
postInstall = ''
|
|
|
|
# don't install static library
|
|
|
|
rm $out/lib/libquirc.a
|
2024-07-27 06:49:29 +00:00
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
|
|
# Set absolute install name to avoid the need for DYLD_LIBRARY_PATH
|
|
|
|
dylib=$out/lib/libquirc.${finalAttrs.version}.dylib
|
|
|
|
${stdenv.cc.targetPrefix}install_name_tool -id "$dylib" "$dylib"
|
2024-04-21 15:54:59 +00:00
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Small QR code decoding library";
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.isc;
|
2022-04-15 01:41:22 +00:00
|
|
|
maintainers = [ lib.maintainers.raskin ];
|
|
|
|
platforms = lib.platforms.linux ++ [ "x86_64-darwin" "aarch64-darwin" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2024-04-21 15:54:59 +00:00
|
|
|
})
|