summary refs log tree commit diff
path: root/pkgs/development/libraries/cl/default.nix
blob: dfb54893b6ca7a4ca1c474e4d51bf027fbe08138 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{stdenv, fetchurl, SDL, mesa, rebar, erlang, opencl-headers, ocl-icd }:

stdenv.mkDerivation rec {
  version = "1.2.1";
  name = "cl-${version}";

  src = fetchurl {
    url = "https://github.com/tonyrog/cl/archive/${name}.tar.gz";
    sha256 = "03jv280h9gqqqkm0mmkjr53srd2mzhvyy1biss77wpjrzq2z12c8";
  };

  buildInputs = [ erlang rebar opencl-headers ocl-icd ];
  #propagatedBuildInputs = [ SDL mesa ];

  buildPhase = ''
    sed 's/git/"${version}"/' -i src/cl.app.src
    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/${name}
    mkdir -p $DIR
    cp -ruv c_src doc ebin include priv src $DIR
  '';

  meta = {
    homepage = https://github.com/tonyrog/cl;
    description = "OpenCL binding for Erlang";
    license = stdenv.lib.licences.mit;
  };
}