2019-10-28 01:31:37 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkgconfig
|
|
|
|
, gnome3
|
|
|
|
, telepathy-glib
|
|
|
|
, libxslt
|
|
|
|
, makeWrapper
|
|
|
|
}:
|
2012-03-14 16:28:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "telepathy-mission-control";
|
2019-10-28 01:31:37 +00:00
|
|
|
version = "5.16.4";
|
2012-03-14 16:28:11 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-10-28 01:31:37 +00:00
|
|
|
url = "https://telepathy.freedesktop.org/releases/${pname}/${pname}-${version}.tar.gz";
|
2017-12-18 03:58:40 +00:00
|
|
|
sha256 = "1jz6wwgsfxixha6ys2hbzbk5faqnj9kh2m5qdlgx5anqgandsscp";
|
2012-03-14 16:28:11 +00:00
|
|
|
};
|
|
|
|
|
2019-10-28 01:31:37 +00:00
|
|
|
buildInputs = [
|
|
|
|
telepathy-glib
|
|
|
|
telepathy-glib.python
|
|
|
|
]; # ToDo: optional stuff missing
|
2012-03-14 16:28:11 +00:00
|
|
|
|
2019-10-28 01:31:37 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
libxslt
|
|
|
|
makeWrapper
|
|
|
|
];
|
2014-04-08 14:02:15 +01:00
|
|
|
|
2014-06-19 22:36:48 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-04-08 14:02:15 +01:00
|
|
|
preFixup = ''
|
|
|
|
wrapProgram "$out/libexec/mission-control-5" \
|
2017-07-24 05:24:11 +01:00
|
|
|
--prefix GIO_EXTRA_MODULES : "${stdenv.lib.getLib gnome3.dconf}/lib/gio/modules" \
|
2014-04-08 14:02:15 +01:00
|
|
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
|
|
|
'';
|
2014-06-19 22:36:48 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An account manager and channel dispatcher for the Telepathy framework";
|
2017-12-18 03:58:40 +00:00
|
|
|
homepage = https://telepathy.freedesktop.org/components/telepathy-mission-control/;
|
2014-06-19 22:36:48 +01:00
|
|
|
license = licenses.lgpl21;
|
2017-12-18 03:58:40 +00:00
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
2014-06-19 22:36:48 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2012-03-14 16:28:11 +00:00
|
|
|
}
|