nixpkgs/pkgs/tools/system/clinfo/default.nix

31 lines
797 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, ocl-icd, opencl-headers }:
2019-06-08 22:45:42 +01:00
stdenv.mkDerivation rec {
pname = "clinfo";
2020-11-22 22:43:37 +00:00
version = "3.0.20.11.20";
2019-06-08 22:45:42 +01:00
2021-01-06 03:02:40 +00:00
src = fetchFromGitHub {
owner = "Oblomov";
repo = "clinfo";
rev = version;
sha256 = "052xfkbmgfpalmhfwn0dj5114x2mzwz29y37qqhhsdpaxsz0y422";
};
2019-06-08 22:45:42 +01:00
buildInputs = [ ocl-icd opencl-headers ];
2021-01-06 03:02:40 +00:00
NIX_CFLAGS_COMPILE = [
"-Wno-error=stringop-overflow"
"-Wno-error=stringop-truncation"
];
2019-11-03 11:58:14 +00:00
2019-06-08 22:45:42 +01:00
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
2019-06-08 22:45:42 +01:00
description = "Print all known information about all available OpenCL platforms and devices in the system";
homepage = "https://github.com/Oblomov/clinfo";
2019-06-08 22:45:42 +01:00
license = licenses.cc0;
maintainers = with maintainers; [ athas ];
2021-01-06 03:02:40 +00:00
platforms = platforms.linux;
2019-06-08 22:45:42 +01:00
};
}