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

25 lines
638 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub, cmake, qtbase, qtmultimedia }:
mkDerivation rec {
pname = "libquotient";
2021-06-08 23:36:22 +01:00
version = "0.6.7";
src = fetchFromGitHub {
owner = "quotient-im";
repo = "libQuotient";
rev = version;
2021-06-08 23:36:22 +01:00
sha256 = "sha256-fAzYv9OsanXqocEvbSB3OA9OVicwcZ0xT9uYbrFPEHc=";
};
buildInputs = [ qtbase qtmultimedia ];
nativeBuildInputs = [ cmake ];
meta = with lib; {
2021-04-10 12:08:33 +01:00
description = "A Qt5 library to write cross-platform clients for Matrix";
homepage = "https://matrix.org/docs/projects/sdk/quotient";
license = licenses.lgpl21;
2020-12-29 22:16:54 +00:00
maintainers = with maintainers; [ colemickens ];
};
}