Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
74 lines
2.1 KiB
Nix
74 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
ocl-icd,
|
|
opencl-headers,
|
|
libsForQt5,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "opencl-caps-viewer";
|
|
version = "1.20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SaschaWillems";
|
|
repo = "OpenCLCapsViewer";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-P7G8FvVXzDAfN3d4pGXC+c9x4bY08/cJNYQ6lvjyVCQ=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
libsForQt5.qmake
|
|
libsForQt5.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
ocl-icd
|
|
opencl-headers
|
|
libsForQt5.qtx11extras
|
|
libsForQt5.qtbase
|
|
];
|
|
|
|
postPatch = ''
|
|
# Fix installation paths
|
|
substituteInPlace OpenCLCapsViewer.pro \
|
|
--replace-fail "target.path = /usr/bin" "target.path = /bin/" \
|
|
--replace-fail "desktop.path = /usr/share/applications" "desktop.path = /share/applications" \
|
|
--replace-fail "icon.path = /usr/share/icons/hicolor/256x256/apps/" "icon.path = /share/icons/hicolor/256x256/apps/" \
|
|
--replace-fail 'else: unix:!android: target.path = /opt/$${TARGET}/bin' ""
|
|
'';
|
|
|
|
qmakeFlags = [
|
|
"OpenCLCapsViewer.pro"
|
|
"CONFIG+=x11"
|
|
];
|
|
|
|
installFlags = [ "INSTALL_ROOT=${placeholder "out"}" ];
|
|
|
|
postInstall = ''
|
|
cp Resources/icon.png $out/share/icons/hicolor/256x256/apps/openclCapsViewer.png
|
|
'';
|
|
|
|
qtWrapperArgs = [
|
|
"--prefix LD_LIBRARY_PATH : ${ocl-icd}/lib"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
mainProgram = "OpenCLCapsViewer";
|
|
description = "OpenCL hardware capability viewer";
|
|
longDescription = ''
|
|
Client application to display hardware implementation details for devices supporting the OpenCL API by Khronos.
|
|
The hardware reports can be submitted to a public online database that allows comparing different devices, browsing available features, extensions, formats, etc.
|
|
'';
|
|
homepage = "https://opencl.gpuinfo.org/";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ andrewgigena ];
|
|
changelog = "https://github.com/SaschaWillems/OpenCLCapsViewer/releases/tag/${finalAttrs.version}";
|
|
};
|
|
})
|