about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/clinfo/default.nix
blob: dbcbae6eaa9a5bb589ff1ee0ca8fab6f6e19a334 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenv, fetchFromGitHub, ocl-icd, opencl-headers }:

stdenv.mkDerivation rec {
  pname = "clinfo";
  version = "3.0.20.11.20";

  src = fetchFromGitHub {
    owner = "Oblomov";
    repo = "clinfo";
    rev = version;
    sha256 = "052xfkbmgfpalmhfwn0dj5114x2mzwz29y37qqhhsdpaxsz0y422";
  };

  buildInputs = [ ocl-icd opencl-headers ];

  NIX_CFLAGS_COMPILE = [
    "-Wno-error=stringop-overflow"
    "-Wno-error=stringop-truncation"
  ];

  makeFlags = [ "PREFIX=${placeholder "out"}" ];

  meta = with lib; {
    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;
  };
}