mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 20:43:28 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
30 lines
788 B
Nix
30 lines
788 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, llvmPackages, readline, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "oclgrind";
|
|
version = "21.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jrprice";
|
|
repo = "oclgrind";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-DGCF7X2rPV1w9guxg2bMylRirXQgez24sG7Unlct3ow=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
nativeCheckInputs = [ python3 ];
|
|
buildInputs = [ llvmPackages.llvm llvmPackages.clang-unwrapped readline ];
|
|
|
|
cmakeFlags = [
|
|
"-DCLANG_ROOT=${llvmPackages.clang-unwrapped}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "An OpenCL device simulator and debugger";
|
|
homepage = "https://github.com/jrprice/oclgrind";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ athas ];
|
|
};
|
|
}
|