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

27 lines
691 B
Nix
Raw Normal View History

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