mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 16:53:40 +00:00
Merge pull request #72133 from jtojnar/t-m-c
telepathy-mission-control: 5.16.4 → 5.16.5
This commit is contained in:
commit
a51ea52f5a
@ -1,22 +1,44 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, gnome3, telepathy-glib, libxslt, makeWrapper }:
|
{ stdenv
|
||||||
|
, fetchurl
|
||||||
|
, pkgconfig
|
||||||
|
, gnome3
|
||||||
|
, telepathy-glib
|
||||||
|
, python3
|
||||||
|
, libxslt
|
||||||
|
, makeWrapper
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "${pname}-5.16.4";
|
|
||||||
pname = "telepathy-mission-control";
|
pname = "telepathy-mission-control";
|
||||||
|
version = "5.16.5";
|
||||||
|
|
||||||
|
outputs = [ "out" "lib" "dev" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
|
url = "https://telepathy.freedesktop.org/releases/${pname}/${pname}-${version}.tar.gz";
|
||||||
sha256 = "1jz6wwgsfxixha6ys2hbzbk5faqnj9kh2m5qdlgx5anqgandsscp";
|
sha256 = "00xxv38cfdirnfvgyd56m60j0nkmsv5fz6p2ydyzsychicxl6ssc";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ telepathy-glib telepathy-glib.python ]; # ToDo: optional stuff missing
|
buildInputs = [
|
||||||
|
python3
|
||||||
|
]; # ToDo: optional stuff missing
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig libxslt makeWrapper ];
|
nativeBuildInputs = [
|
||||||
|
pkgconfig
|
||||||
|
libxslt
|
||||||
|
makeWrapper
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
telepathy-glib
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
wrapProgram "$out/libexec/mission-control-5" \
|
wrapProgram "$lib/libexec/mission-control-5" \
|
||||||
--prefix GIO_EXTRA_MODULES : "${stdenv.lib.getLib gnome3.dconf}/lib/gio/modules" \
|
--prefix GIO_EXTRA_MODULES : "${stdenv.lib.getLib gnome3.dconf}/lib/gio/modules" \
|
||||||
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
||||||
'';
|
'';
|
||||||
|
@ -1,13 +1,54 @@
|
|||||||
{ stdenv, intltool, fetchurl, webkitgtk, pkgconfig, gtk3, glib
|
{ stdenv
|
||||||
, file, librsvg, gnome3, gdk-pixbuf, python3
|
, intltool
|
||||||
, telepathy-glib, telepathy-farstream, glibcLocales
|
, fetchurl
|
||||||
, clutter-gtk, clutter-gst, gst_all_1, cogl, gnome-online-accounts
|
, webkitgtk
|
||||||
, gcr, libsecret, folks, libpulseaudio, telepathy-mission-control
|
, pkgconfig
|
||||||
, telepathy-logger, libnotify, clutter, libsoup, gnutls
|
, gtk3
|
||||||
, evolution-data-server, yelp-xsl
|
, glib
|
||||||
, libcanberra-gtk3, p11-kit, farstream, libtool, shared-mime-info
|
, file
|
||||||
, wrapGAppsHook, itstool, libxml2, libxslt, icu, libgee, gsettings-desktop-schemas
|
, librsvg
|
||||||
, isocodes, enchant, libchamplain, geoclue2, geocode-glib, cheese, libgudev }:
|
, gnome3
|
||||||
|
, gdk-pixbuf
|
||||||
|
, python3
|
||||||
|
, telepathy-glib
|
||||||
|
, telepathy-farstream
|
||||||
|
, clutter-gtk
|
||||||
|
, clutter-gst
|
||||||
|
, gst_all_1
|
||||||
|
, cogl
|
||||||
|
, gnome-online-accounts
|
||||||
|
, gcr
|
||||||
|
, libsecret
|
||||||
|
, folks
|
||||||
|
, libpulseaudio
|
||||||
|
, telepathy-mission-control
|
||||||
|
, telepathy-logger
|
||||||
|
, libnotify
|
||||||
|
, clutter
|
||||||
|
, libsoup
|
||||||
|
, gnutls
|
||||||
|
, evolution-data-server
|
||||||
|
, yelp-xsl
|
||||||
|
, libcanberra-gtk3
|
||||||
|
, p11-kit
|
||||||
|
, farstream
|
||||||
|
, libtool
|
||||||
|
, shared-mime-info
|
||||||
|
, wrapGAppsHook
|
||||||
|
, itstool
|
||||||
|
, libxml2
|
||||||
|
, libxslt
|
||||||
|
, icu
|
||||||
|
, libgee
|
||||||
|
, gsettings-desktop-schemas
|
||||||
|
, isocodes
|
||||||
|
, enchant
|
||||||
|
, libchamplain
|
||||||
|
, geoclue2
|
||||||
|
, geocode-glib
|
||||||
|
, cheese
|
||||||
|
, libgudev
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "empathy";
|
pname = "empathy";
|
||||||
@ -18,34 +59,76 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0sn10fcymc6lyrabk7vx8lpvlaxxkqnmcwj9zdkfa8qf3388k4nc";
|
sha256 = "0sn10fcymc6lyrabk7vx8lpvlaxxkqnmcwj9zdkfa8qf3388k4nc";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedUserEnvPkgs = [
|
|
||||||
gnome-online-accounts shared-mime-info
|
|
||||||
];
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
folks telepathy-logger evolution-data-server telepathy-mission-control
|
folks
|
||||||
];
|
telepathy-logger
|
||||||
nativeBuildInputs = [
|
evolution-data-server
|
||||||
pkgconfig libtool intltool itstool file wrapGAppsHook
|
telepathy-mission-control
|
||||||
libxml2 libxslt yelp-xsl python3 glibcLocales
|
|
||||||
];
|
|
||||||
buildInputs = [
|
|
||||||
gtk3 glib webkitgtk icu gnome-online-accounts
|
|
||||||
telepathy-glib clutter-gtk clutter-gst cogl
|
|
||||||
gst_all_1.gstreamer gst_all_1.gst-plugins-base
|
|
||||||
gcr libsecret libpulseaudio gdk-pixbuf
|
|
||||||
libnotify clutter libsoup gnutls libgee p11-kit
|
|
||||||
libcanberra-gtk3 telepathy-farstream farstream
|
|
||||||
gnome3.adwaita-icon-theme gsettings-desktop-schemas
|
|
||||||
librsvg
|
|
||||||
# Spell-checking
|
|
||||||
enchant isocodes
|
|
||||||
# Display maps, location awareness, geocode support
|
|
||||||
libchamplain geoclue2 geocode-glib
|
|
||||||
# Cheese webcam support, camera monitoring
|
|
||||||
cheese libgudev
|
|
||||||
];
|
];
|
||||||
|
|
||||||
LC_ALL = "en_US.UTF-8";
|
nativeBuildInputs = [
|
||||||
|
pkgconfig
|
||||||
|
libtool
|
||||||
|
intltool
|
||||||
|
itstool
|
||||||
|
file
|
||||||
|
wrapGAppsHook
|
||||||
|
libxml2
|
||||||
|
libxslt
|
||||||
|
yelp-xsl
|
||||||
|
python3
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gtk3
|
||||||
|
glib
|
||||||
|
webkitgtk
|
||||||
|
icu
|
||||||
|
gnome-online-accounts
|
||||||
|
telepathy-glib
|
||||||
|
clutter-gtk
|
||||||
|
clutter-gst
|
||||||
|
cogl
|
||||||
|
gst_all_1.gstreamer
|
||||||
|
gst_all_1.gst-plugins-base
|
||||||
|
gcr
|
||||||
|
libsecret
|
||||||
|
libpulseaudio
|
||||||
|
gdk-pixbuf
|
||||||
|
libnotify
|
||||||
|
clutter
|
||||||
|
libsoup
|
||||||
|
gnutls
|
||||||
|
libgee
|
||||||
|
p11-kit
|
||||||
|
libcanberra-gtk3
|
||||||
|
telepathy-farstream
|
||||||
|
farstream
|
||||||
|
gnome3.adwaita-icon-theme
|
||||||
|
gsettings-desktop-schemas
|
||||||
|
librsvg
|
||||||
|
|
||||||
|
# Spell-checking
|
||||||
|
enchant
|
||||||
|
isocodes
|
||||||
|
|
||||||
|
# Display maps, location awareness, geocode support
|
||||||
|
libchamplain
|
||||||
|
geoclue2
|
||||||
|
geocode-glib
|
||||||
|
|
||||||
|
# Cheese webcam support, camera monitoring
|
||||||
|
cheese
|
||||||
|
libgudev
|
||||||
|
];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
gappsWrapperArgs+=(
|
||||||
|
--prefix XDG_DATA_DIRS : "${shared-mime-info}/share"
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = gnome3.updateScript {
|
updateScript = gnome3.updateScript {
|
||||||
|
Loading…
Reference in New Issue
Block a user