{ stdenv, fetchFromGitHub, cmake , qtbase }: stdenv.mkDerivation rec { name = "libqmatrixclient-${version}"; version = "0.4.0"; src = fetchFromGitHub { owner = "QMatrixClient"; repo = "libqmatrixclient"; rev = "v${version}"; sha256 = "1llzqjagvp91kcg26q5c4qw9aaz7wna3rh6k06rc3baivrjqf3cn"; }; buildInputs = [ qtbase ]; nativeBuildInputs = [ cmake ]; meta = with stdenv.lib; { description= "A Qt5 library to write cross-platfrom clients for Matrix"; homepage = https://matrix.org/docs/projects/sdk/libqmatrixclient.html; license = licenses.lgpl21; platforms = with platforms; linux ++ darwin; maintainers = with maintainers; [ peterhoeg ]; }; }