Unverified Commit ed6e6758 authored by Pol Dellaiera's avatar Pol Dellaiera
Browse files

gretl: fix compilation on `aarch64-darwin`

parent 0346e4c0
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
, mpfr
, openblas
, readline
, Accelerate
, pkg-config
}:

@@ -38,6 +39,8 @@ stdenv.mkDerivation (finalAttrs: {
    mpfr
    openblas
    readline
  ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
    Accelerate
  ];

  nativeBuildInputs = [
+3 −1
Original line number Diff line number Diff line
@@ -843,7 +843,9 @@ with pkgs;
    autoreconfHook = buildPackages.autoreconfHook269;
  };
  gretl = callPackage ../applications/science/math/gretl { };
  gretl = callPackage ../applications/science/math/gretl {
    inherit (darwin.apple_sdk.frameworks) Accelerate;
  };
  grsync = callPackage ../applications/misc/grsync { };