mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
caf: fix on clang4
Also, enable parallel builds because I got sick of waiting :)
This commit is contained in:
parent
409fe12f76
commit
8636ce283f
1 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, cmake }:
|
{ stdenv, fetchFromGitHub, fetchpatch, cmake }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "actor-framework-${version}";
|
name = "actor-framework-${version}";
|
||||||
|
@ -11,8 +11,16 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0202nsdriigdh6sxi1k3hddvmf1x54qpykbvf2ghfhzyh0m1q7j2";
|
sha256 = "0202nsdriigdh6sxi1k3hddvmf1x54qpykbvf2ghfhzyh0m1q7j2";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# See https://github.com/actor-framework/actor-framework/issues/545 and remove on next release that incorporates this
|
||||||
|
patches = [ (fetchpatch {
|
||||||
|
url = "https://github.com/actor-framework/actor-framework/commit/c5a3ee26a6e76b28dd4226f35230b280f291386d.patch";
|
||||||
|
sha256 = "1l0323cqyqlp3lvggm709fmfm6lk6av1smdbd420adhi3ksj2vhj";
|
||||||
|
}) ];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "An open source implementation of the actor model in C++";
|
description = "An open source implementation of the actor model in C++";
|
||||||
homepage = http://actor-framework.org/;
|
homepage = http://actor-framework.org/;
|
||||||
|
|
Loading…
Reference in a new issue