summary refs log blame commit diff
path: root/pkgs/development/libraries/caf/default.nix
blob: f49c7ca013870b78418b5f5d5cf502c612cdec11 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                   

                         
                            
                     



                              
                  
                                                                    











                                                                            
{ stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
  pname = "actor-framework";
  version = "0.17.2";

  src = fetchFromGitHub {
    owner = "actor-framework";
    repo = "actor-framework";
    rev = version;
    sha256 = "0z9qh580pa1mx9h48npwji24bjyqxm1w93wdcc4inmjzdmrqwzim";
  };

  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 ];
  };
}