summary refs log tree commit diff
path: root/pkgs/development/pure-modules/ffi/default.nix
blob: 3b076a4f38c2b9e3ed18fc57010a7f0cfe58273e (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
{ lib, stdenv, fetchurl, pkg-config, pure, libffi }:

stdenv.mkDerivation rec {
  baseName = "ffi";
  version = "0.14";
  name = "pure-${baseName}-${version}";

  src = fetchurl {
    url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz";
    sha256 = "0331f48efaae40af21b23cf286fd7eac0ea0a249d08fd97bf23246929c0ea71a";
  };

  nativeBuildInputs = [ pkg-config ];
  propagatedBuildInputs = [ pure libffi ];
  makeFlags = [ "libdir=$(out)/lib" "prefix=$(out)/" ];
  setupHook = ../generic-setup-hook.sh;

  meta = {
    description = "Provides an interface to libffi which enables you to call C functions from Pure and vice versa";
    homepage = "http://puredocs.bitbucket.org/pure-ffi.html";
    license = lib.licenses.lgpl3Plus;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ asppsa ];
  };
}