nixpkgs/pkgs/development/libraries/libqmatrixclient/default.nix
R. RyanTM 6e664678a4 libqmatrixclient: 0.3.0.2 -> 0.4.0 (#49281)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libqmatrixclient/versions
2018-10-27 20:13:39 -04:00

27 lines
707 B
Nix

{ 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 ];
};
}