38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, pidgin, json-glib, glib, http-parser, sqlite, olm, libgcrypt } :
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "purple-matrix-unstable";
|
|
version = "2019-06-06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matrix-org";
|
|
repo = "purple-matrix";
|
|
rev = "4494ba22b479917f0b1f96a3019792d3d75bcff1";
|
|
sha256 = "1gjm0z4wa5vi9x1xk43rany5pffrwg958n180ahdj9a7sa8a4hpm";
|
|
};
|
|
|
|
NIX_CFLAGS_COMPILE = builtins.toString [
|
|
# glib-2.62 deprecations
|
|
"-DGLIB_DISABLE_DEPRECATION_WARNINGS"
|
|
# override "-O0 -Werror" set by build system
|
|
"-O3" "-Wno-error"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ pidgin json-glib glib http-parser sqlite olm libgcrypt ];
|
|
|
|
makeFlags = [
|
|
"PLUGIN_DIR_PURPLE=${placeholder "out"}/lib/purple-2"
|
|
"DATA_ROOT_DIR_PURPLE=${placeholder "out"}/share"
|
|
];
|
|
|
|
buildFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ]; # fix build on darwin
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|