nixpkgs/pkgs/development/libraries/caf/default.nix

24 lines
597 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake }:
2017-03-11 21:42:43 +00:00
stdenv.mkDerivation rec {
pname = "actor-framework";
version = "0.17.0";
2017-03-11 21:42:43 +00:00
src = fetchFromGitHub {
owner = "actor-framework";
repo = "actor-framework";
2019-09-08 23:38:31 +00:00
rev = version;
sha256 = "10dcpmdsfq6r7hpvg413pqi1q3rjvgn7f87c17ghyz30x6rjhaic";
2017-03-11 21:42:43 +00:00
};
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 ];
};
}