nixpkgs/pkgs/development/libraries/cl/default.nix
2023-03-18 18:39:59 +02:00

41 lines
1,004 B
Nix

{ lib, stdenv, fetchFromGitHub, rebar, erlang, opencl-headers, ocl-icd }:
stdenv.mkDerivation rec {
version = "1.2.4";
pname = "cl";
src = fetchFromGitHub {
owner = "tonyrog";
repo = "cl";
rev = "cl-${version}";
sha256 = "1gwkjl305a0231hz3k0w448dsgbgdriaq764sizs5qfn59nzvinz";
};
# https://github.com/tonyrog/cl/issues/39
postPatch = ''
substituteInPlace c_src/Makefile \
--replace "-m64" ""
'';
buildInputs = [ erlang rebar opencl-headers ocl-icd ];
buildPhase = ''
rebar compile
'';
# 'cp' line taken from Arch recipe
# https://projects.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/erlang-sdl
installPhase = ''
DIR=$out/lib/erlang/lib/${pname}-${version}
mkdir -p $DIR
cp -ruv c_src doc ebin include priv src $DIR
'';
meta = with lib; {
homepage = "https://github.com/tonyrog/cl";
description = "OpenCL binding for Erlang";
license = licenses.mit;
platforms = platforms.linux;
};
}