summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2022-12-27 10:43:31 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2022-12-27 10:43:31 +0100
commit4bb6b5ee5fed43d4e5719d86af59404ef6b76990 (patch)
tree2e3c71f392c54f8c7b4ec6dfb7c5cf58a58039c8
parentd97726bb767167a9baf67979bd37b3a1d45aa83e (diff)
downloadnixpkgs-4bb6b5ee5fed43d4e5719d86af59404ef6b76990.tar
nixpkgs-4bb6b5ee5fed43d4e5719d86af59404ef6b76990.tar.gz
nixpkgs-4bb6b5ee5fed43d4e5719d86af59404ef6b76990.tar.bz2
nixpkgs-4bb6b5ee5fed43d4e5719d86af59404ef6b76990.tar.lz
nixpkgs-4bb6b5ee5fed43d4e5719d86af59404ef6b76990.tar.xz
nixpkgs-4bb6b5ee5fed43d4e5719d86af59404ef6b76990.tar.zst
nixpkgs-4bb6b5ee5fed43d4e5719d86af59404ef6b76990.zip
libacr38u: unbreak on aarch64-darwin
-rw-r--r--pkgs/tools/security/libacr38u/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/tools/security/libacr38u/default.nix b/pkgs/tools/security/libacr38u/default.nix
index 378fc217ae9..5211f42b96e 100644
--- a/pkgs/tools/security/libacr38u/default.nix
+++ b/pkgs/tools/security/libacr38u/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, pkg-config, pcsclite , libusb-compat-0_1, IOKit }:
+{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, pcsclite , libusb-compat-0_1, IOKit }:
 
 stdenv.mkDerivation {
   version = "1.7.11";
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
 
   doCheck = true;
 
-  nativeBuildInputs = [ pkg-config ];
+  nativeBuildInputs = [ autoreconfHook pkg-config ];
   buildInputs = [ pcsclite libusb-compat-0_1 ]
     ++ lib.optional stdenv.isDarwin IOKit;
 
@@ -38,7 +38,5 @@ stdenv.mkDerivation {
     license = licenses.lgpl2Plus;
     maintainers = with maintainers; [ berce ];
     platforms = with platforms; unix;
-    # never built on aarch64-darwin since first introduction in nixpkgs
-    broken = stdenv.isDarwin && stdenv.isAarch64;
   };
 }