Unverified Commit 7dbde855 authored by Stanisław Pitucha's avatar Stanisław Pitucha Committed by GitHub
Browse files

Merge pull request #196415 from viraptor/libfreefare-darwin

libfreefare: fix darwin build
parents 36f94f8e 8ab9072e
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, pkg-config, libnfc, openssl
, libobjc ? null }:
, libobjc ? null
, IOKit, Security
}:

stdenv.mkDerivation {
  pname = "libfreefare";
@@ -11,7 +13,7 @@ stdenv.mkDerivation {
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libnfc openssl ] ++ lib.optional stdenv.isDarwin libobjc;
  buildInputs = [ libnfc openssl ] ++ lib.optionals stdenv.isDarwin [ libobjc IOKit Security ];

  meta = with lib; {
    description = "The libfreefare project aims to provide a convenient API for MIFARE card manipulations";
+1 −0
Original line number Diff line number Diff line
@@ -19999,6 +19999,7 @@ with pkgs;
  libfreeaptx = callPackage ../development/libraries/libfreeaptx { };
  libfreefare = callPackage ../development/libraries/libfreefare {
    inherit (darwin.apple_sdk.frameworks) IOKit Security;
    inherit (darwin) libobjc;
  };