lol

liblqr: fix compilation on x86_64_darwin

Add AppKit dependency, fixes error: "ld: file not found:
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit for
architecture x86_64".

authored by

Sheldon Neuberger and committed by
Yt
40f68f68 148a6cbb

+3 -3
+2 -2
pkgs/development/libraries/liblqr-1/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config, glib, Carbon }: 1 + { lib, stdenv, fetchFromGitHub, pkg-config, glib, Carbon, AppKit }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "liblqr-1"; ··· 14 14 }; 15 15 16 16 nativeBuildInputs = [ pkg-config ]; 17 - buildInputs = lib.optionals stdenv.isDarwin [ Carbon ]; 17 + buildInputs = lib.optionals stdenv.isDarwin [ Carbon AppKit ]; 18 18 propagatedBuildInputs = [ glib ]; 19 19 20 20 meta = with lib; {
+1 -1
pkgs/top-level/all-packages.nix
··· 19655 19655 libliftoff = callPackage ../development/libraries/libliftoff { }; 19656 19656 19657 19657 liblqr1 = callPackage ../development/libraries/liblqr-1 { 19658 - inherit (darwin.apple_sdk.frameworks) Carbon; 19658 + inherit (darwin.apple_sdk.frameworks) Carbon AppKit; 19659 19659 }; 19660 19660 19661 19661 liblockfile = callPackage ../development/libraries/liblockfile { };