caf: enable openssl support

This commit is contained in:
Tobias Mayer 2019-08-30 12:41:58 +02:00
parent dc1e9ee48d
commit 53bd4ebd17

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake }:
{ stdenv, fetchFromGitHub, cmake, openssl }:
stdenv.mkDerivation rec {
pname = "actor-framework";
@ -13,11 +13,13 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
buildInputs = [ openssl ];
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 ];
maintainers = with maintainers; [ bobakker tobim ];
};
}