mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
libgrss: fix darwin build
This commit is contained in:
parent
ab6176ac5b
commit
abbf922ed2
@ -1,5 +1,6 @@
|
||||
{ lib, stdenv, fetchurl, fetchpatch, pkg-config, vala, gobject-introspection, gtk-doc
|
||||
, docbook_xsl, docbook_xml_dtd_412, glib, libxml2, libsoup, gnome, buildPackages
|
||||
, Foundation, AppKit
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -35,6 +36,9 @@ stdenv.mkDerivation rec {
|
||||
glib
|
||||
libxml2
|
||||
libsoup
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
Foundation
|
||||
AppKit
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
|
@ -19891,7 +19891,9 @@ with pkgs;
|
||||
|
||||
libgringotts = callPackage ../development/libraries/libgringotts { };
|
||||
|
||||
libgrss = callPackage ../development/libraries/libgrss { };
|
||||
libgrss = callPackage ../development/libraries/libgrss {
|
||||
inherit (darwin.apple_sdk_11_0.frameworks) Foundation AppKit;
|
||||
};
|
||||
|
||||
libgweather = callPackage ../development/libraries/libgweather { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user