spectral: unstable-2019-08-30 -> 817

* libsecret, now req'd
* url updates
This commit is contained in:
Will Dietz 2020-01-01 01:35:57 -06:00
parent 9ed03f2103
commit 1e3ac89095
No known key found for this signature in database
GPG Key ID: EBB0EA4124809D02

View File

@ -7,34 +7,32 @@
, qtgraphicaleffects , qtgraphicaleffects
, qtdeclarative , qtdeclarative
, qtmacextras , qtmacextras
, olm, cmark , olm, libsecret, cmark
}: }:
let qtkeychain-qt5 = qtkeychain.override { let qtkeychain-qt5 = qtkeychain.override {
inherit qtbase qttools; inherit qtbase qttools;
withQt5 = true; withQt5 = true;
}; };
in stdenv.mkDerivation { in stdenv.mkDerivation rec {
pname = "spectral"; pname = "spectral";
version = "unstable-2019-08-30"; version = "817";
src = fetchgit { src = fetchgit {
url = "https://gitlab.com/b0/spectral.git"; url = "https://gitlab.com/spectral-im/spectral.git";
rev = "ee86c948aec5fe72979fc6df97f4a6ef711bdf94"; rev = version;
sha256 = "1mqabdkvzq48wki92wm2r79kj8g8m7ganpl47sh60qfsk4bxa8b2"; sha256 = "0lg0bkz621cmqb67kz1zmn4xwbspcqalz68byll5iszqz9y4gnp1";
fetchSubmodules = true; fetchSubmodules = true;
}; };
#qmakeFlags = [ "CONFIG+=qtquickcompiler" "BUNDLE_FONT=true" ];
nativeBuildInputs = [ pkgconfig cmake wrapQtAppsHook ]; nativeBuildInputs = [ pkgconfig cmake wrapQtAppsHook ];
buildInputs = [ qtbase qtkeychain-qt5 qtquickcontrols2 qtmultimedia qtgraphicaleffects qtdeclarative olm cmark ] buildInputs = [ qtbase qtkeychain-qt5 qtquickcontrols2 qtmultimedia qtgraphicaleffects qtdeclarative olm libsecret cmark ]
++ stdenv.lib.optional stdenv.hostPlatform.isLinux libpulseaudio ++ stdenv.lib.optional stdenv.hostPlatform.isLinux libpulseaudio
++ stdenv.lib.optional stdenv.hostPlatform.isDarwin qtmacextras; ++ stdenv.lib.optional stdenv.hostPlatform.isDarwin qtmacextras;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A glossy cross-platform Matrix client."; description = "A glossy cross-platform Matrix client.";
homepage = "https://gitlab.com/b0/spectral"; homepage = "https://spectral.im";
license = licenses.gpl3; license = licenses.gpl3;
platforms = with platforms; linux ++ darwin; platforms = with platforms; linux ++ darwin;
maintainers = with maintainers; [ dtzWill ]; maintainers = with maintainers; [ dtzWill ];