summary refs log blame commit diff
path: root/pkgs/development/libraries/libblocksruntime/default.nix
blob: 34ab70e0adcd34434c80ae82bf7b588fedec52d9 (plain) (tree)


























                                                                    
{ stdenv, fetchFromGitHub, clang }:

stdenv.mkDerivation {
  name = "blocksruntime";

  src = fetchFromGitHub {
    owner = "mackyle";
    repo = "blocksruntime";
    rev = "b5c5274daf1e0e46ecc9ad8f6f69889bce0a0a5d";
    sha256 = "0ic4lagagkylcvwgf10mg0s1i57h4i25ds2fzvms22xj4zwzk1sd";
  };

  buildInputs = [ clang ];

  configurePhase = ''
    export CC=clang
    export CXX=clang++
  '';

  buildPhase = "./buildlib";

  checkPhase = "./checktests";

  doCheck = false; # hasdescriptor.c test fails, hrm.

  installPhase = ''prefix="/" DESTDIR=$out ./installlib'';
}