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

30 lines
699 B
Nix
Raw Normal View History

2019-08-30 11:41:58 +01:00
{ stdenv, fetchFromGitHub, cmake, openssl }:
2017-03-11 21:42:43 +00:00
stdenv.mkDerivation rec {
pname = "actor-framework";
2019-10-21 10:36:56 +01:00
version = "0.17.2";
2017-03-11 21:42:43 +00:00
src = fetchFromGitHub {
owner = "actor-framework";
repo = "actor-framework";
2019-09-09 00:38:31 +01:00
rev = version;
2019-10-21 10:36:56 +01:00
sha256 = "0z9qh580pa1mx9h48npwji24bjyqxm1w93wdcc4inmjzdmrqwzim";
2017-03-11 21:42:43 +00:00
};
nativeBuildInputs = [ cmake ];
2019-08-30 11:41:58 +01:00
buildInputs = [ openssl ];
2019-08-30 14:47:22 +01:00
cmakeFlags = [
"-DCAF_NO_EXAMPLES:BOOL=TRUE"
];
2017-03-11 21:42:43 +00:00
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;
2019-08-30 11:41:58 +01:00
maintainers = with maintainers; [ bobakker tobim ];
2017-03-11 21:42:43 +00:00
};
}