6e664678a4
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
27 lines
707 B
Nix
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 ];
|
|
};
|
|
}
|