qrencode: remove SDL2 to fix infinite recursion in tests

Nix fails with an infinite recursion error When running the qrencode tests with
SDL2 in nativeCheckInputs.

Removing the dependency fixes the error and the tests still run successfully.
This commit is contained in:
Stefano Mazzucco
2025-05-17 17:40:18 +01:00
parent 04db9fed9e
commit b8246ba626
-3
View File
@@ -3,7 +3,6 @@
stdenv,
fetchFromGitHub,
pkg-config,
SDL2,
libpng,
libiconv,
autoreconfHook,
@@ -37,8 +36,6 @@ stdenv.mkDerivation (finalAttrs: rec {
libpng
];
nativeCheckInputs = [ SDL2 ];
doCheck = false;
checkPhase = ''