nixpkgs/pkgs/development/libraries/caf/default.nix
R. RyanTM db7637377b caf: 0.15.7 -> 0.16.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/actor-framework/versions
2018-10-16 04:30:20 -07:00

24 lines
612 B
Nix

{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "actor-framework-${version}";
version = "0.16.0";
src = fetchFromGitHub {
owner = "actor-framework";
repo = "actor-framework";
rev = "${version}";
sha256 = "01i6sclxwa7k91ngi7jw9vlss8wjpv1hz4y5934jq0lx8hdf7s02";
};
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 ];
};
}