quaternion: 0.0.95.1 -> 0.0.95.81
This commit is contained in:
parent
46fadaaa0f
commit
8d447c5626
1 changed files with 14 additions and 11 deletions
|
@ -1,37 +1,40 @@
|
||||||
{ mkDerivation
|
{ stdenv
|
||||||
, stdenv
|
|
||||||
, lib
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, cmake
|
, cmake
|
||||||
, qtquickcontrols
|
, wrapQtAppsHook
|
||||||
|
, qtbase
|
||||||
, qtquickcontrols2
|
, qtquickcontrols2
|
||||||
, qtkeychain
|
, qtkeychain
|
||||||
, qtmultimedia
|
, qtmultimedia
|
||||||
, qttools
|
, qttools
|
||||||
, libquotient
|
, libquotient
|
||||||
, libsecret
|
, libsecret
|
||||||
|
, olm
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation rec {
|
stdenv.mkDerivation {
|
||||||
pname = "quaternion";
|
pname = "quaternion";
|
||||||
version = "0.0.95.1";
|
version = "0.0.95.81";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "QMatrixClient";
|
owner = "QMatrixClient";
|
||||||
repo = "Quaternion";
|
repo = "Quaternion";
|
||||||
rev = version;
|
rev = "5f639d8c84ed1475057b2cb3f7d0cb0abe77203b";
|
||||||
sha256 = "sha256-6FLj/hVY13WO7sMgHCHV57eMJu39cwQHXQX7m0lmv4I=";
|
hash = "sha256-/1fich97oqSSDpfOjaYghYzHfu3MDrh77nanbIN/v/w=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
qtmultimedia
|
|
||||||
qtquickcontrols2
|
|
||||||
qtkeychain
|
|
||||||
libquotient
|
libquotient
|
||||||
libsecret
|
libsecret
|
||||||
|
olm
|
||||||
|
qtbase
|
||||||
|
qtkeychain
|
||||||
|
qtmultimedia
|
||||||
|
qtquickcontrols2
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake qttools ];
|
nativeBuildInputs = [ cmake qttools wrapQtAppsHook ];
|
||||||
|
|
||||||
postInstall =
|
postInstall =
|
||||||
if stdenv.isDarwin then ''
|
if stdenv.isDarwin then ''
|
||||||
|
|
Loading…
Reference in a new issue