clinfo: init at 2.2.18.04.06
This commit is contained in:
parent
9bd6c5d817
commit
0b8efd8724
|
@ -507,6 +507,11 @@
|
||||||
github = "aszlig";
|
github = "aszlig";
|
||||||
name = "aszlig";
|
name = "aszlig";
|
||||||
};
|
};
|
||||||
|
athas = {
|
||||||
|
email = "athas@sigkill.dk";
|
||||||
|
github = "athas";
|
||||||
|
name = "Troels Henriksen";
|
||||||
|
};
|
||||||
atnnn = {
|
atnnn = {
|
||||||
email = "etienne@atnnn.com";
|
email = "etienne@atnnn.com";
|
||||||
github = "atnnn";
|
github = "atnnn";
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
{ stdenv, fetchFromGitHub, ocl-icd, opencl-headers }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "clinfo";
|
||||||
|
version = "2.2.18.04.06";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Oblomov";
|
||||||
|
repo = "clinfo";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "0y2q0lz5yzxy970b7w7340vp4fl25vndahsyvvrywcrn51ipgplx";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ocl-icd opencl-headers ];
|
||||||
|
|
||||||
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||||
|
|
||||||
|
meta = with stdenv.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;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ athas ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -23107,6 +23107,8 @@ in
|
||||||
|
|
||||||
click = callPackage ../applications/networking/cluster/click { };
|
click = callPackage ../applications/networking/cluster/click { };
|
||||||
|
|
||||||
|
clinfo = callPackage ../tools/system/clinfo { };
|
||||||
|
|
||||||
cups = callPackage ../misc/cups {
|
cups = callPackage ../misc/cups {
|
||||||
libusb = libusb1;
|
libusb = libusb1;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue