fixup! purple-matrix: set c compiler to cc, fixes build on osx

gstqt5
Vladimír Čunát 2020-07-20 14:50:01 +02:00
parent 083772d7ee
commit fc84898808
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
1 changed files with 3 additions and 2 deletions

View File

@ -4,8 +4,6 @@ stdenv.mkDerivation rec {
pname = "purple-matrix-unstable";
version = "2019-06-06";
buildFlags = [ "CC=cc" ];
src = fetchFromGitHub {
owner = "matrix-org";
repo = "purple-matrix";
@ -28,10 +26,13 @@ stdenv.mkDerivation rec {
"DATA_ROOT_DIR_PURPLE=${placeholder "out"}/share"
];
buildFlags = [ "CC=cc" ]; # fix build on darwin
meta = with stdenv.lib; {
homepage = "https://github.com/matrix-org/purple-matrix";
description = "Matrix support for Pidgin / libpurple";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ symphorien ];
};
}