mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
clinfo: enable on darwin
This commit is contained in:
parent
db6044d5de
commit
c10a075517
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, ocl-icd, opencl-headers }:
|
||||
{ lib, stdenv, fetchFromGitHub, ocl-icd, opencl-headers, OpenCL }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "clinfo";
|
||||
@ -11,11 +11,11 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-0ijfbfv1F6mnt1uFH/A4yOADJoAFrPMa3yAOFJW53ek=";
|
||||
};
|
||||
|
||||
buildInputs = [ ocl-icd opencl-headers ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = [
|
||||
"-Wno-error=stringop-overflow"
|
||||
"-Wno-error=stringop-truncation"
|
||||
buildInputs = lib.optionals (!stdenv.isDarwin) [
|
||||
ocl-icd
|
||||
opencl-headers
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
OpenCL
|
||||
];
|
||||
|
||||
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Print all known information about all available OpenCL platforms and devices in the system";
|
||||
homepage = "https://github.com/Oblomov/clinfo";
|
||||
license = licenses.cc0;
|
||||
maintainers = with maintainers; [ athas ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ athas r-burns ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -31915,7 +31915,9 @@ with pkgs;
|
||||
|
||||
click = callPackage ../applications/networking/cluster/click { };
|
||||
|
||||
clinfo = callPackage ../tools/system/clinfo { };
|
||||
clinfo = callPackage ../tools/system/clinfo {
|
||||
inherit (darwin.apple_sdk.frameworks) OpenCL;
|
||||
};
|
||||
|
||||
clpeak = callPackage ../tools/misc/clpeak { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user