mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
29 lines
725 B
Nix
29 lines
725 B
Nix
{ stdenv, fetchFromGitHub, cmake, python, opencl-headers }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "opencl-clhpp";
|
|
version = "2.0.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KhronosGroup";
|
|
repo = "OpenCL-CLHPP";
|
|
rev = "v${version}";
|
|
sha256 = "0h5kpg5cl8wzfnqmv6i26aig2apv06ffm9p3rh35938n9r8rladm";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake python ];
|
|
|
|
propagatedBuildInputs = [ opencl-headers ];
|
|
|
|
preConfigure = ''
|
|
cmakeFlags="-DCMAKE_INSTALL_PREFIX=$out/include -DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "OpenCL Host API C++ bindings";
|
|
homepage = http://github.khronos.org/OpenCL-CLHPP/;
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|