mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
Add additional darwin dependency for qca2
This commit is contained in:
parent
2c6cd5b69c
commit
4a4478bbc0
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, cmake, pkgconfig, qt }:
|
||||
{ stdenv, fetchurl, cmake, pkgconfig, qt, darwin }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "qca-${version}";
|
||||
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
buildInputs = [ qt ];
|
||||
buildInputs = [ (stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security) qt ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user