mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 20:11:43 +03:00
qrencode: fix darwin build
This commit is contained in:
parent
b0f40b7851
commit
34ea243e42
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, SDL2, libpng }:
|
{ stdenv, fetchurl, pkgconfig, SDL2, libpng, libiconv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "qrencode";
|
pname = "qrencode";
|
||||||
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ SDL2 libpng ];
|
buildInputs = [ SDL2 libpng ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-tests"
|
"--with-tests"
|
||||||
|
Loading…
Reference in New Issue
Block a user