2014-06-19 23:36:48 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, telepathy_glib, libxslt, makeWrapper, upower }:
|
2012-03-14 17:28:11 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-06-19 23:36:48 +02:00
|
|
|
name = "${pname}-5.16.2";
|
2012-03-14 17:28:11 +01:00
|
|
|
pname = "telepathy-mission-control";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
|
2014-06-19 23:36:48 +02:00
|
|
|
sha256 = "1sk8f9jfaxgbsniz0n5hmrcwvxla3x8axjcnjbppg7nidk9gijrx";
|
2012-03-14 17:28:11 +01:00
|
|
|
};
|
|
|
|
|
2014-06-19 23:36:48 +02:00
|
|
|
buildInputs = [ telepathy_glib makeWrapper upower ]; # ToDo: optional stuff missing
|
2012-03-14 17:28:11 +01:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig libxslt ];
|
2014-04-08 15:02:15 +02:00
|
|
|
|
2014-06-19 23:36:48 +02:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-04-08 15:02:15 +02:00
|
|
|
preFixup = ''
|
|
|
|
wrapProgram "$out/libexec/mission-control-5" \
|
|
|
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
|
|
|
'';
|
2014-06-19 23:36:48 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An account manager and channel dispatcher for the Telepathy framework";
|
|
|
|
homepage = http://telepathy.freedesktop.org/wiki/;
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2012-03-14 17:28:11 +01:00
|
|
|
}
|