summary refs log tree commit diff
path: root/pkgs/development/libraries/caf
diff options
context:
space:
mode:
authorTobias Mayer <tobim@fastmail.fm>2019-08-30 12:41:58 +0200
committerTobias Mayer <tobim@fastmail.fm>2019-10-21 11:39:34 +0200
commit53bd4ebd1799fa81330db873075cc477de5902be (patch)
tree0d6228333d278da5079b23c9c81f949d8ae3a9dc /pkgs/development/libraries/caf
parentdc1e9ee48df9c1b5513760ed658b01a735c5d109 (diff)
downloadnixpkgs-53bd4ebd1799fa81330db873075cc477de5902be.tar
nixpkgs-53bd4ebd1799fa81330db873075cc477de5902be.tar.gz
nixpkgs-53bd4ebd1799fa81330db873075cc477de5902be.tar.bz2
nixpkgs-53bd4ebd1799fa81330db873075cc477de5902be.tar.lz
nixpkgs-53bd4ebd1799fa81330db873075cc477de5902be.tar.xz
nixpkgs-53bd4ebd1799fa81330db873075cc477de5902be.tar.zst
nixpkgs-53bd4ebd1799fa81330db873075cc477de5902be.zip
caf: enable openssl support
Diffstat (limited to 'pkgs/development/libraries/caf')
-rw-r--r--pkgs/development/libraries/caf/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/caf/default.nix b/pkgs/development/libraries/caf/default.nix
index f49c7ca0138..e048e21aac2 100644
--- a/pkgs/development/libraries/caf/default.nix
+++ b/pkgs/development/libraries/caf/default.nix
@@ -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 ];
   };
 }