Skip to content

Commit

Permalink
caf: init at 0.15.3
Browse files Browse the repository at this point in the history
fixes #23772
  • Loading branch information
bobakker authored and Mic92 committed Mar 12, 2017
1 parent f303ac7 commit 1d948dd
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/maintainers.nix
Expand Up @@ -71,6 +71,7 @@
bjg = "Brian Gough <bjg@gnu.org>";
bjornfor = "Bjørn Forsman <bjorn.forsman@gmail.com>";
bluescreen303 = "Mathijs Kwik <mathijs@bluescreen303.nl>";
bobakker = "Bo Bakker <bobakk3r@gmail.com>";
bobvanderlinden = "Bob van der Linden <bobvanderlinden@gmail.com>";
bodil = "Bodil Stokke <nix@bodil.org>";
boothead = "Ben Ford <ben@perurbis.com>";
Expand Down
23 changes: 23 additions & 0 deletions pkgs/development/libraries/caf/default.nix
@@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
name = "actor-framework-${version}";
version = "0.15.3";

src = fetchFromGitHub {
owner = "actor-framework";
repo = "actor-framework";
rev = "${version}";
sha256 = "0202nsdriigdh6sxi1k3hddvmf1x54qpykbvf2ghfhzyh0m1q7j2";
};

nativeBuildInputs = [ cmake ];

meta = with stdenv.lib; {
description = "An open source implementation of the actor model in C++";
homepage = http://actor-framework.org/;
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = with maintainers; [ bobakker ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -7059,6 +7059,8 @@ with pkgs;

certbot = callPackage ../tools/admin/certbot { };

caf = callPackage ../development/libraries/caf {};

cgal = callPackage ../development/libraries/CGAL {};

cgui = callPackage ../development/libraries/cgui {};
Expand Down

0 comments on commit 1d948dd

Please sign in to comment.