Merge pull request #146338 from figsoda/menyoki-fix-darwin

menyoki: fix darwin build

authored by

Domen Kožar and committed by
GitHub
3b0f2374 5b14843f

+4 -1
+3 -1
pkgs/applications/graphics/menyoki/default.nix
··· 6 6 , stdenv 7 7 , libX11 8 8 , libXrandr 9 + , AppKit 9 10 , withSki ? true 10 11 }: 11 12 ··· 25 26 nativeBuildInputs = [ installShellFiles ] 26 27 ++ lib.optional stdenv.isLinux pkg-config; 27 28 28 - buildInputs = lib.optionals stdenv.isLinux [ libX11 libXrandr ]; 29 + buildInputs = lib.optionals stdenv.isLinux [ libX11 libXrandr ] 30 + ++ lib.optional stdenv.isDarwin AppKit; 29 31 30 32 buildNoDefaultFeatures = !withSki; 31 33
+1
pkgs/top-level/all-packages.nix
··· 26613 26613 26614 26614 menyoki = callPackage ../applications/graphics/menyoki { 26615 26615 inherit (xorg) libX11 libXrandr; 26616 + inherit (darwin.apple_sdk.frameworks) AppKit; 26616 26617 }; 26617 26618 26618 26619 mercurial = callPackage ../applications/version-management/mercurial {