3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #172917 from armeenm/fix-clfft

clfft: fix
This commit is contained in:
Jörg Thalheim 2022-05-14 07:10:54 +01:00 committed by GitHub
commit 5d2e4cf900
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16818,7 +16818,9 @@ with pkgs;
classads = callPackage ../development/libraries/classads { };
clfft = callPackage ../development/libraries/clfft { };
clfft = callPackage ../development/libraries/clfft {
stdenv = if stdenv.cc.isGNU then gcc10Stdenv else stdenv;
};
clipp = callPackage ../development/libraries/clipp { };