Commit 8ab9072e authored by Stanisław Pitucha's avatar Stanisław Pitucha
Browse files

libfreefare: fix darwin build

parent ab6176ac
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
@@ -19986,6 +19986,7 @@ with pkgs;
  libfreeaptx = callPackage ../development/libraries/libfreeaptx { };
  libfreefare = callPackage ../development/libraries/libfreefare {
    inherit (darwin.apple_sdk.frameworks) IOKit Security;
    inherit (darwin) libobjc;
  };