clinfo: init at 2.2.18.04.06

wip/yesman
Troels Henriksen 5 years ago committed by Lassulus
parent 9bd6c5d817
commit 0b8efd8724
  1. 5
      maintainers/maintainer-list.nix
  2. 25
      pkgs/tools/system/clinfo/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -507,6 +507,11 @@
github = "aszlig";
name = "aszlig";
};
athas = {
email = "athas@sigkill.dk";
github = "athas";
name = "Troels Henriksen";
};
atnnn = {
email = "etienne@atnnn.com";
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 { };
clinfo = callPackage ../tools/system/clinfo { };
cups = callPackage ../misc/cups {
libusb = libusb1;
};

Loading…
Cancel
Save