caf: enable openssl support
This commit is contained in:
parent
dc1e9ee48d
commit
53bd4ebd17
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake }:
|
{ stdenv, fetchFromGitHub, cmake, openssl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "actor-framework";
|
pname = "actor-framework";
|
||||||
@ -13,11 +13,13 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "An open source implementation of the actor model in C++";
|
description = "An open source implementation of the actor model in C++";
|
||||||
homepage = http://actor-framework.org/;
|
homepage = http://actor-framework.org/;
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ bobakker ];
|
maintainers = with maintainers; [ bobakker tobim ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user