My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libblocksruntime/default.nix

34 lines
802 B

{ lib, stdenv, fetchFromGitHub, clang }:
stdenv.mkDerivation {
pname = "blocksruntime";
version = "unstable-2014-06-24";
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'';
meta = with lib; {
description = "Installs the BlocksRuntime library from the compiler-rt";
homepage = "https://github.com/mackyle/blocksruntime";
license = licenses.mit;
};
}