ants: unbreak build with gcc stdenv

itk4: unbreak build with gcc stdenv
This commit is contained in:
Ben Darwin 2022-05-16 15:55:15 -04:00
parent 72cb3780a5
commit b9fc9ac2f1

View File

@ -18025,6 +18025,7 @@ with pkgs;
};
itk4 = callPackage ../development/libraries/itk/4.x.nix {
stdenv = if stdenv.cc.isGNU && stdenv.system == "x86_64-linux" then gcc10Stdenv else stdenv;
inherit (darwin.apple_sdk.frameworks) Cocoa;
};
@ -32689,6 +32690,7 @@ with pkgs;
angsd = callPackage ../applications/science/biology/angsd { };
ants = callPackage ../applications/science/biology/ants {
stdenv = if stdenv.cc.isGNU && stdenv.system == "x86_64-linux" then gcc10Stdenv else stdenv;
inherit (darwin.apple_sdk.frameworks) Cocoa;
};