nixpkgs-suyu/pkgs/development/libraries/libqmatrixclient/default.nix

27 lines
707 B
Nix
Raw Normal View History

2017-11-26 16:31:44 +01:00
{ stdenv, fetchFromGitHub, cmake
, qtbase }:
stdenv.mkDerivation rec {
name = "libqmatrixclient-${version}";
version = "0.4.0";
2017-11-26 16:31:44 +01:00
src = fetchFromGitHub {
owner = "QMatrixClient";
repo = "libqmatrixclient";
2018-04-30 11:22:01 +02:00
rev = "v${version}";
sha256 = "1llzqjagvp91kcg26q5c4qw9aaz7wna3rh6k06rc3baivrjqf3cn";
2017-11-26 16:31:44 +01:00
};
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;
2017-11-26 16:31:44 +01:00
maintainers = with maintainers; [ peterhoeg ];
};
}