2018-02-25 02:23:58 +00:00
|
|
|
{ stdenv, fetchhg, pidgin, glib, json-glib, protobuf, protobufc }:
|
2016-07-17 10:08:43 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "purple-hangouts-hg";
|
2018-12-05 01:21:47 +00:00
|
|
|
version = "2018-12-02";
|
2016-07-17 10:08:43 +01:00
|
|
|
|
|
|
|
src = fetchhg {
|
|
|
|
url = "https://bitbucket.org/EionRobb/purple-hangouts/";
|
2018-12-05 01:21:47 +00:00
|
|
|
rev = "cccf2f6";
|
|
|
|
sha256 = "1zd1rlzqvw1zkb0ydyz039n3xa1kv1f20a4l6rkm9a8sp6rpf3pi";
|
2016-07-17 10:08:43 +01:00
|
|
|
};
|
|
|
|
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ pidgin glib json-glib protobuf protobufc ];
|
2016-07-17 10:08:43 +01:00
|
|
|
|
2018-12-05 01:21:47 +00:00
|
|
|
PKG_CONFIG_PURPLE_PLUGINDIR = "${placeholder "out"}/lib/purple-2";
|
|
|
|
PKG_CONFIG_PURPLE_DATADIR = "${placeholder "out"}/share";
|
2016-07-17 10:08:43 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://bitbucket.org/EionRobb/purple-hangouts";
|
2016-07-17 10:08:43 +01:00
|
|
|
description = "Native Hangouts support for pidgin";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ ralith ];
|
|
|
|
};
|
|
|
|
}
|